Practice question
1 Qs. What is the Value of each variable in each line of code ;
Line-by-Line Variable Values
Line of Codenum ValueneWNum ValueExplanation
let num = 5;5-num is initialized with 5.
let neWNum = num++;65neWNum gets the value 5; num increments to...
javascripts.hashnode.dev2 min read