Home | Mailing List | Blog | Tutorial Videos

Implicit semicolon behavior

What does this snippet of code print?

let array = [1, 2]

(array).push(3)

console.log(array)

Select one: