This file contains 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
{ | |
"books": [ | |
{ | |
"title": "Halo 5: Guardians", | |
"developer": "343 Industries", | |
"cover": "http://www.everyeye.it/img-cover/halo-guardians-v6-25191-300x500.jpg", | |
"url": "http://www.amazon.com/Halo-5-Guardians-Xbox-One/dp/B00DB9JV5W/ref=sr_1_1?ie=UTF8&qid=1440400657&sr=8-1&keywords=halo+5+guardians", | |
"genre": "Shooter" | |
}, | |
{ |
This file contains 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
var name = "Kyle"; | |
var students = [ "Ryan", "Trinh", "Miles", "Jermaine", "Kyle" ]; | |
var newDiv = document.createElement('div'); | |
var divText = document.createTextNode("Kyle"); | |
newDiv.appendChild(divText) | |
$('body').append(newDiv) | |
$('body').append('<div>Miles</div>','<div>Trinh</div>', '<div>Ryan</div>', '<div>Jermaine</div>') |
This file contains 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
var name = Kyle | |
var students = { "Ryan", "Trinh", "Miles", "Jermaine", "Kyle"}; | |
for( var i = 0; i = students.length; i++){ | |
console.log( student [ i ] ); | |
}; | |
if (student = "Kyle") { | |
console.warn(); |