File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ The first few Fibonacci numbers are:
124
124
### sumAllDigit
125
125
Function that takes a number and returns sum of the digit the given number.
126
126
127
- console.log(solverjs.sumAllDighti (123));
127
+ console.log(solverjs.sumAllDigit (123));
128
128
// The output is : 6
129
129
130
130
### reverseNumber
@@ -1775,14 +1775,14 @@ and returns the corresponding digital storage value converted to Megabytes.
1775
1775
console.log(solverjs.tbToMb(1))
1776
1776
// The output is : 1000000
1777
1777
1778
- #### Terabyte to Gigabyte => tbToTb (TB)
1778
+ #### Terabyte to Gigabyte => tbToGb (TB)
1779
1779
1780
1780
1 TB=1000 GB
1781
1781
1782
- The tbToTb method takes a digital storage value in Terabytes
1782
+ The tbToGb method takes a digital storage value in Terabytes
1783
1783
and returns the corresponding digital storage value converted to Gigabytes.
1784
1784
1785
- console.log(solverjs.tbToTb (1))
1785
+ console.log(solverjs.tbToGb (1))
1786
1786
// The output is : 1000
1787
1787
1788
1788
#### Terabyte to Petabyte => tbToPb(TB)
You can’t perform that action at this time.
0 commit comments