condition for( X; A;C ) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

condition for( X; A;C )

Hi, guys. please Help me. why the output is just (10) rather than it gives me 1 to 10 1 2 3 4 5 6 7 8 9 10 <body> <form> Enter the Number : <br /> <input type="number" id="number" /> <br /><br /> <br /> <textarea id="answer" cols="20" rows="10" placeholder="Answer Here"></textarea><br /> <input type="button" onClick=" secondFunction()" value="Click to get The answer" /> </form> <script> function secondFunction(){ for(var a=1; a<=10; a++){ document.getElementById("answer").value=a; } } </body>

25th Feb 2018, 4:19 PM
Roohollah Habibi
Roohollah Habibi - avatar
3 Answers
+ 3
Here I changed your script a little bit, as mentioned in previous answer you are overwriting the textarea on each loop iteration, instead you could either concatenate the previous textarea content, or use temporary buffer and flush it to textarea after loop finished. <script> function secondFunction(){ // Get the number in text input, you may // need to anticipate invalid input here var limit=parseInt(document.getElementById("number").value); // Use result as temporay buffer to write // the output into, this way we write the // textarea only once. var result =""; for(var a=1; a<=limit; a++){ result += a + "\n"; } // Write the result into textarea document.getElementById("answer").value=result; } </script>
25th Feb 2018, 5:28 PM
Ipang
+ 3
😍 thanks a lot
25th Feb 2018, 6:04 PM
Roohollah Habibi
Roohollah Habibi - avatar
+ 2
you are assigning the value of "a" to it which is incrementing in your loop.
25th Feb 2018, 4:59 PM
JaatPTM("Paritosh Malik");
JaatPTM("Paritosh Malik"); - avatar