Skip to content

Commit 1fd902d

Browse files
committed
Create 2710-remove-trailing-zeros-from-a-string.js
1 parent 6aa1e44 commit 1fd902d

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/**
2+
* @param {string} num
3+
* @return {string}
4+
*/
5+
var removeTrailingZeros = function (num) {
6+
7+
for (let i = num.length - 1; i >= 0; i--) { // loop through the every element of string num from end
8+
if (num[i] != 0) { // if every character of num is not equal to zero
9+
return num.slice(0, i + 1); // return the character of num upto ith character
10+
}
11+
}
12+
};

0 commit comments

Comments
 (0)