Skip to content

Instantly share code, notes, and snippets.

@samuelayo
Created February 4, 2019 16:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samuelayo/75548f4bbf56d3e9d9078850aec446b6 to your computer and use it in GitHub Desktop.
Save samuelayo/75548f4bbf56d3e9d9078850aec446b6 to your computer and use it in GitHub Desktop.
let $ = require('jquery');
let books = require('./books.js');
$.each(books, function(key, value){
$('body').append("<h1>"+ books[key].name +"</h1>");
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment