Skip to content

Instantly share code, notes, and snippets.

@KimSarabia
Created November 8, 2015 16:39
Show Gist options
  • Save KimSarabia/8a1fe01b8a799308bad8 to your computer and use it in GitHub Desktop.
Save KimSarabia/8a1fe01b8a799308bad8 to your computer and use it in GitHub Desktop.
Learning Objects W3 Schools
<!DOCTYPE html>
<html>
<body>
<p>My Cat is...</p>
<p id="demo"></p>
<script>
var myCat = {texture:"fluffy", breed:"Calico", color:"white", age: 4};
document.getElementById("demo").innerHTML = "My cat is" + " " + myCat.texture;
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment