How to remove the second digit from a number in JavaScript

1 Answer

0 votes
function remove_second_digit(n) {
    let str = n.toString();
    
    str = str.substring(0, 1) + str.substring(2);
    
    return parseInt(str);
}
        
let n = 87315;

n = remove_second_digit(n);

console.log(n);



/*
run:
   
8315
   
*/

 



answered Jan 13, 2024 by avibootz

Related questions

1 answer 113 views
1 answer 106 views
1 answer 143 views
1 answer 110 views
1 answer 110 views
1 answer 104 views
...