Skip to content

Tag: foreach

Fill array with prompt in JavaScript and use push method

I am learning arrays in JavaScript and I am using the foreach with the push method. The following code is working as its supposed to: But I want to replicate this with a prompt, instead of hard coding the values in the array. And end the prompt with a 0. The code I attempted is the following, but the variable…

Covert ForLoop to ForEach in Javascript

I was practicing in Hackerrank JavaScript problems. I found one test which is called Compare the triplets. This is the problem: I found the solution like this: I wanted to convert the ForLoop into ForEach method. But I could not find the way to do that. Answer