f

PHOTO EMBED

Sat Apr 22 2023 23:37:02 GMT+0000 (Coordinated Universal Time)

Saved by @mojjeasy

var x=23;y=13
console.log(  x ^=y);
/*this returns 26. this is because the binary value of 23 is 10111 and binary value of 13 is 1101. the XOR operation between them gives 11010. which is 26 in decimal. */
content_copyCOPY