This file contains hidden or 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
//Multiline String | |
const string = ` | |
satu | |
dua | |
tiga` | |
console.log(string) | |
//Penyisipan | |
const myWork = 'ES6' | |
const work = `Sedang mengerjakan tugas ${myWork}` |
This file contains hidden or 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
//data JSON | |
[ | |
{ | |
"id": 1, | |
"isbn": 123456, | |
"judul": "latihan", | |
"sinopsis": "Mencoba database", | |
"penulis": "krisna", | |
"genre": "horor", | |
"harga": 20000 |
This file contains hidden or 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
--membuat database | |
CREATE DATABASE tugas; | |
--mengganti nama database | |
ALTER DATABASE tugas RENAME TO tugasbaru; | |
--membuat tabel | |
CREATE TABLE books ( | |
id INTEGER PRIMARY KEY, | |
isbn INTEGER, |