Open Source Your Knowledge, Become a Contributor
Technology knowledge has to be shared and made accessible for free. Join the movement.
Welcome!
This Node.js template lets you get started quickly with a simple one-page playground.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
var obj = {
name : "Jason",
sex : "Male",
age : "Twenty Seven"
}
obj['address'] = "PH"
obj.status = "Single"
const { name, sex, address, status } = obj
console.log(name + " is " + sex)
console.log("He lives in " + address)
console.log("He is " + status)
Enter to Rename, Shift+Enter to Preview
Advanced usage
If you want a more complex example (external libraries, viewers...), use the Advanced Node.js template
Open Source Your Knowledge: become a Contributor and help others learn. Create New Content