Question #1

Author: admin
tags: JavaScript  
let x = 1;
let y = 2;
x = y = x;
console.log(x, y);
What will the console output be?
1, 1
1, 2
2, 1
2, 2
Operator = has right-to-left associativity.
Rate the difficulty of the question:
easyhard