NM
Size: a a a
NM
L
j
j
j
this.parentSelector instanceof Element
j
IB
B
IB
B
NM
L
IB
L
function(argument1, argument2, argument3)
IB
function(argument1, argument2, argument3)
В-
IB
В-
L
console.log('blabla', variable)
j
let a
let b
b = ((a = (a || 0) + 1), 2);
// -->
b = ((a = 0 + 1), 2);
// -->
b = ((a = 1), 2);
// -->
// a === 1
b = (1, 2);
// -->
// b === 2