Skip to content
Snippets Groups Projects
Commit 9c24cb8b authored by ttran67's avatar ttran67
Browse files

Fixed a

parent 60d83c8e
No related branches found
No related tags found
No related merge requests found
......@@ -2,9 +2,5 @@ export function formatAsTriple(x, y, z) {
// INSTRUCTIONS: Given three coordinates, return a template literal that
// formats them as a three-coordinate triple. For example, formatAsTriple(4,
// 5, 6) should return the string '(4, 5, 6)'.
//
// Resources:
// <https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals>
// <https://javascript.info/types#string>
// <https://javascript.info/string#quotes>
return `(${x}, ${y}, ${z})`;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment