Skip to content

Instantly share code, notes, and snippets.

@scriptonian
Created January 11, 2018 16:16
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 scriptonian/c5a86f465bb5f5d10c6b42b9557c9098 to your computer and use it in GitHub Desktop.
Save scriptonian/c5a86f465bb5f5d10c6b42b9557c9098 to your computer and use it in GitHub Desktop.
var book = {
title : 'The hidden Universe',
author: 'Konstantin',
printPage : function(){
console.log('printing book page');
},
editions: ['1', '2', '3'],
translators : [
{
publisher: 'Unipub A',
language: 'english'
},
{
publisher: 'Unipub B',
language : 'arabic'
}
]
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment