We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98c6c44 commit 49c0e77Copy full SHA for 49c0e77
Sprint-2/1-key-errors/1.js
@@ -18,9 +18,9 @@ console.log(decimalNumber);
18
// =============> Identifier 'decimalNumber' has already been declared is the error msg thrown by the code
19
20
// Finally, correct the code to fix the problem
21
-// =============>
+// =============>
22
function convertToPercentage(decimalNumber) {
23
-// const decimalNumber = 0.5; this line must be deleted
+ // const decimalNumber = 0.5; this line must be deleted
24
const percentage = `${decimalNumber * 100}%`;
25
26
return percentage;
0 commit comments