Explain the output? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Explain the output?

var str = "js css html php"; var res1 = str.substring(-2, 2); var res2 = str.substr(-3, 3); var res3 = str.slice(-3); console.log(res1 + ""+ res2 + "" + res3);

22nd Jan 2020, 1:38 PM
Mohamed Kalith
Mohamed Kalith - avatar
1 Answer