Skip to content

Commit c05000b

Browse files
authored
Update 3-to-pounds.js
1 parent ee36551 commit c05000b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sprint-2/3-mandatory-implement/3-to-pounds.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
function formatPenceToPounds(penceString){
88
const penceStringWithoutTrailingP = penceString.substring(0, penceString.length -1);
99
const pounds = paddedPenceNumberString.slice(0, -2);
10-
return ${pounds}.${pence}`;
10+
return ${pounds}.${pence}`;
1111
}
1212

1313
console.log(formatPenceToPounds("9p"));

0 commit comments

Comments
 (0)