Sun Apr 23 2023 00:12:47 GMT+0000 (Coordinated Universal Time)
Saved by @mojjeasy
var x=23;y=13 console.log( x ??=y); //returns 23. var x =0; console.log(x ??= 12); //this will return 0;
Copy this HTML code:
Preview:
open_in_newInstructions on embedding in Medium
Comments