The implicit type conversion mentioned here is a conversion caused by ==.
- If NaN exists, false will be returned
- See if there is a boolean. If there is a boolean, convert the boolean into a number
- Next, see if there are strings. There are three situations: the other party is an object, and the object is converted using toString; the other party is a number, and the string is converted to a number; the other party is a string, and the comparison is direct; the other party returns false
- If it is a number, the other party is an object, the object takes valueOf for comparison, and all others will return false
- null, undefined will not perform type conversion, but they are equal
This order must be memorized, which is often asked during interviews.
Below are some miscellaneous questions, do it yourself
0 == undefined 1 == true 2 == {valueOf: function(){return 2}} NaN == NaN 8 == undefined 1 == undefined null == {toString: function(){return 2}} 0 == null null == 1 { toString:function(){ return 1 } , valueOf:function(){ return [] }} == 1
Summarize
The above is the JavaScript implicit type conversion steps introduced to you by the editor. I hope it will be helpful to you. If you have any questions, please leave me a message and the editor will reply to you in time. Thank you very much for your support for my website!