Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

for in loop key

// if you want to get the 'value' of the key  you can do it this way
const user = {firstName: 'John', lastName: 'Doe'}

for(key in user) console.log(user[key]);
// output : 
// John
// Doe
 
PREVIOUS NEXT
Tagged: #loop #key
ADD COMMENT
Topic
Name
1+4 =