Slide 8
Slide 8 text
{
"type": "Program",
"body": [
{
"type": "VariableDeclaration",
"declarations": [
{
"type": "VariableDeclarator",
"id": {
"type": "Identifier",
"name": "foo"
},
"init": {
"type": "Literal",
"value": "bar"
}
}
],
"kind": "var"
}
]
}
var foo = 'bar';