var array = ["a","b","c"];
// example 1
for(var value of array){
console.log(value);
value += 1;
}
// example 2
array.forEach((item, index)=>{
console.log(index, item)
})
let text = "";
function add()
{
var node = Node.prototype;
nodeList = NodeList.prototype;
const xxx = ["q", "w", "e", "r", "t"];
xxx.forEach(change);
console.log(xxx);
console.log(text);
/*notice the array does not change but text does*/
}
function change(item, index) {
text += item+index;
}
<p>forEach() calls a function for each element in an array:</p>
<p>Multiply the value of each element with 10:</p>
<p id="demo"></p>
<script>
const numbers = [65, 44, 12, 4];
numbers.forEach(myFunction)
document.getElementById("demo").innerHTML = numbers;
function myFunction(item, index, arr) {
arr[index] = item * 10;
}
</script>
forEach() calls a function for each element in an array:
Multiply the value of each element with 10:
650,440,120,40