JavaScript's instanceof problem?

The principle of

instanceof to detect whether an object An is an instance of another object B is to see if the object pointed to by the prototype of object B is on the [[prototype]] chain of object A. That

"".__proto__===String.prototype
true
"" instanceof String
false
String.prototype""  false
Mar.28,2021

convert it to a string instance when performing a point operation on the literal amount of a string


because " is not an object, but the original data type.

new String("").__proto__ === String.prototype
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3edaa-2c42c.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3edaa-2c42c.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?