Created
January 11, 2018 16:16
-
-
Save scriptonian/c5a86f465bb5f5d10c6b42b9557c9098 to your computer and use it in GitHub Desktop.
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 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