Created
November 8, 2015 16:39
-
-
Save KimSarabia/8a1fe01b8a799308bad8 to your computer and use it in GitHub Desktop.
Learning Objects W3 Schools
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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