How to append int to int in TypeScript

2 Answers

0 votes
function concatenate(x: number, y: number) {
    let pow: number = 10;
     
    while (y >= pow) {
        pow *= 10;
    }
     
    return x * pow + y;
}
         
let a: number = 13;
let b: number = 938;
 
a = concatenate(a, b);
 
console.log(a);
 
 
 
 
/*
run:
 
13938 
 
*/
 

 



answered Oct 19, 2023 by avibootz
0 votes
let a: number = 13;
let b: number = 938;
 
a = parseInt("" + a + b);
 
console.log(typeof a);
console.log(a);
 
 
 
 
/*
run:
 
"number" 
13938
 
*/
 

 



answered Oct 19, 2023 by avibootz
...