Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

js array for in vs for of

let arr = ['el1', 'el2', 'el3'];

arr.addedProp = 'arrProp';

// elKey are the property keys
// (equivalent to an index for an array)
for (let elKey in arr) {
  console.log(elKey); // Will print: 0, 1, 2, addedProp
}

// elValue are the property values
for (let elValue of arr) {
  console.log(elValue) // Will print: el1, el2, el3
}
Comment

PREVIOUS NEXT
Code Example
Javascript :: p5.js style 
Javascript :: create text editor with react-redux 
Javascript :: how to change the staticness of a object in matter.js 
Javascript :: reactjs download file axios 
Javascript :: ascii to hex js 
Javascript :: sum of all numbers in an array javascript 
Javascript :: check if date is valid 
Javascript :: react chrome get language 
Javascript :: bottom shadow in react native 
Javascript :: react js input autocomplete off 
Javascript :: js add params to url 
Javascript :: react map 
Javascript :: settings icon in react fontawesome 
Javascript :: mongodb count conditional array items 
Javascript :: regex diferent of 
Javascript :: max_safe_integer 
Javascript :: nextelementsibling js 
Javascript :: how to get text which is in input td using jquery 
Javascript :: js ask before close chrome 
Javascript :: in array in js 
Javascript :: javascript add quote comma 
Javascript :: loop json jquery 
Javascript :: how to add bootstrap to vue js 
Javascript :: hemisphere light three js 
Javascript :: fetch post image mdn 
Javascript :: get nearest multiple of a number javascript 
Javascript :: how to square a value in javascript 
Javascript :: js substring 
Javascript :: npx create react app Must use import to load ES Module error 
Javascript :: email validator javascript 
ADD CONTENT
Topic
Content
Source link
Name
2+4 =