Contact: aviboots(AT)netvision.net.il
39,895 questions
51,826 answers
573 users
let x = 5; let y = 4; console.log("(+" + String(x) + ") + " + String(y) + " = " + String(x + y)) /* run: "(+5) + 4 = 9" */