Added for/in loop JavaScript

Fixing code style
This commit is contained in:
Raphael Nascimento 2015-10-08 18:34:03 -03:00
parent f1711ddd4c
commit c3914e277b

View File

@ -221,7 +221,7 @@ for (var i = 0; i < 5; i++){
//The For/In statement loops iterates over every property across the entire prototype chain
var description = "";
var person = {fname:"Paul", lname:"Ken", age:18};
for (var x in person) {
for (var x in person){
description += person[x] + " ";
}
@ -229,8 +229,8 @@ for (var x in person) {
//and not its prototypes use hasOwnProperty() check
var description = "";
var person = {fname:"Paul", lname:"Ken", age:18};
for (var x in person) {
if( person.hasOwnProperty( x ) ) {
for (var x in person){
if (person.hasOwnProperty(x)){
description += person[x] + " ";
}
}