Contact: aviboots(AT)netvision.net.il
41,427 questions
53,974 answers
573 users
const str = "The number is "; const num = 42; let result = str + num; console.log(result); /* run: The number is 42 */
const str = "The number is "; const num = 42; let result = `${str} ${num}`; console.log(result); /* run: The number is 42 */
const str = "The number is "; const num = 42; let result = str + String(num); console.log(result); /* run: The number is 42 */
const str = "The number is "; const num = 42; let result = str + num.toString(); console.log(result); /* run: The number is 42 */