How to remove the second digit from a number in TypeScript

1 Answer

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

n = remove_second_digit(n);

console.log(n);



/*
run:
   
8315
   
*/

 



answered Jan 13, 2024 by avibootz

Related questions

1 answer 120 views
1 answer 109 views
1 answer 143 views
1 answer 111 views
1 answer 144 views
1 answer 111 views
...