File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed
Sprint-2/3-mandatory-implement Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change 44// You will need to declare a function called toPounds with an appropriately named parameter.
55
66// You should call this function a number of times to check it works for different inputs
7+
8+
9+
10+ function toPounds ( penceString ) {
11+ const penceStringWithoutTrailingP = penceString . substring (
12+ 0 ,
13+ penceString . length - 1
14+ ) ;
15+
16+ const paddedPenceNumberString = penceStringWithoutTrailingP . padStart ( 3 , "0" ) ;
17+ const pounds = paddedPenceNumberString . substring (
18+ 0 ,
19+ paddedPenceNumberString . length - 2
20+ ) ;
21+
22+ const pence = paddedPenceNumberString
23+ . substring ( paddedPenceNumberString . length - 2 )
24+ . padEnd ( 2 , "0" ) ;
25+
26+ return `£${ pounds } .${ pence } ` ;
27+
28+ // console.log(`£${pounds}.${pence}`);
29+ }
30+
31+
32+
33+ console . log ( toPounds ( "399p" ) ) ;
34+ console . log ( toPounds ( "5p" ) ) ;
35+ console . log ( toPounds ( "50p" ) ) ;
36+ console . log ( toPounds ( "1234p" ) ) ;
You can’t perform that action at this time.
0 commit comments