Identify error(s), if any, in the following JavaScript code…
Identify error(s), if any, in the following JavaScript code segment intended to write values from 100 to 1 in that order (assume all variables are properly declared and initialized). for (x=100; x >= 1; x++) { document.write( x ); }
Read Details