Nodejs Playground2
JGMAGNO
2,480 views
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)
Advanced usage
If you want a more complex example (external libraries, viewers...), use the Advanced Node.js template
Create your playground on Tech.io
This playground was created on Tech.io, our hands-on, knowledge-sharing platform for developers.