Slide 7
Slide 7 text
{
type: "Program",
body: [
{
type: "VariableDeclaration",
declarations: [
{
type: "VariableDeclarator",
id: {
type: "Identifier",
name: "answer"
},
init: {
type: "Literal",
value: 42,
raw: "42"
}
}
],
kind: "var"
}
]
}
var answer = 42;