ASI Questions

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

Q.1) Should you terminate all lines by a �;� ?

Q.2) Why this code is returning undefined in spite of function returning a valid
object literal ?
function test(){
return
{
a:5
}
}
const obj=test();
console.log(obj);
Q.3) Can �use strict� statement or the strict mode change the behavior of ASI ?

You might also like