Would you like to clone this notebook?

When you clone a notebook you are able to make changes without affecting the original notebook.

Cancel

untitled notebook

node v6.17.1
version: 1.0.0
endpointsharetweet
const jkt = require("jkt") const Person = jkt` name: String age: Number birthday: Date Hobbies: Array ` const aditya = Person({ name: "Aditya Kresna", age: '26', birthday: '1991-06-18' // ISO 8601 }) console.log(aditya) console.log(aditya.toJSON())
Loading…

no comments

    sign in to comment