DEBSOURCES
Skip Quicknav
sources / node-rollup / 3.29.5-1 / test / form / samples / chained-assignments / main.js
12345678
let a, b, c, d; a = b = 1; c = d = 2; console.log(a, d); let e = 'first', f = 'second'; e += f += 'third'; console.log(e);