{
  "type": "AssignmentExpression",
  "operator": "=",
  "left": {
    "type": "Identifier",
    "name": "x"
  },
  "right": {
    "type": "Literal",
    "value": 1
  }
}
1
2
3
4
5
6
7
8
9
10
11
12
{
  "type": "AssignmentExpression",
  "operator": "=",
  "left": {
    "type": "Identifier",
    "name": "y"
  },
  "right": {
    "type": "Literal",
    "value": 2
  }
}
1
2
3
4
5
6
7
8
9
10
11
12
Last Updated: a year ago