Last active
February 3, 2021 05:08
-
-
Save debbysa/a6719fbb88fd73c0146e64ec4941986d 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
const book = { | |
"title": "Manusia Setengah Salmon", | |
"author": "Raditya Dika", | |
"publisher": { | |
"name": "Gagas Media", | |
"address": "Jakarta Selatan" | |
} | |
} | |
const title = book.title; | |
const author = book.author; | |
const publisher = book.publisher; | |
console.log("saya membeli buku berjudul ", title); | |
console.log("buku ini karya ", author); | |
console.log("buku ini diterbitkan oleh ", publisher.name, "di kota ", publisher.address); | |
// saya membeli buku berjudul Manusia Setengah Salmon | |
// buku ini karya Raditya Dika | |
// buku ini diterbitkan oleh Gagas Media di kota Jakarta Selatan |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment