definition The for in loop is used to loop through an object propertires. example var mobile = { color: "red", company: "apple", }; for (var i in fruit) { console.log(mobile[i]); } output red apple