js do math from string code example
Example 1: intval js
parseInt(value);
let string = "321"
console.log(string); // "321" <= string
let number = parseInt(string);
console.log(number) // 321 <=int
Example 2: reverse string js
const solution = (str) => str.split("").reverse().join("");