operator sum string to character javascript

Solutions on MaxInterview for operator sum string to character javascript by the best coders in the world

showing results for - "operator sum string to character javascript"
Noemi
21 Oct 2019
1var x = 2;
2var y = 39;
3var z = "42";
4eval("x + y + 1"); // returns 42
5eval(z);           // returns 42 
6