Skip to content

Instantly share code, notes, and snippets.

@adamsmith
Created November 26, 2013 05:38
Show Gist options
  • Save adamsmith/7653920 to your computer and use it in GitHub Desktop.
Save adamsmith/7653920 to your computer and use it in GitHub Desktop.
//Eldrian
//email:eldrian98@hotmail.com
//Codeacademy , Javascript , Object 2 Exercise 6
//Finds out if objects has the stated property
var myObj = {
// finish myObj
name:"eldrian",
};
console.log( myObj.hasOwnProperty('name') ); // should print true
console.log( myObj.hasOwnProperty('nickname') ); // should print false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment