मुझे इस बारे में लंबे समय से परेशान किया गया था, इसलिए मैंने आखिरकार इस पर शोध किया और आपको इस बात के लिए लंबे समय तक हवा दी कि चीजें किस तरह से हैं।
से कल्पना :
Section 11.9.4 The Strict Equals Operator ( === )
The production EqualityExpression : EqualityExpression === RelationalExpression
is evaluated as follows:
- Let lref be the result of evaluating EqualityExpression.
- Let lval be GetValue(lref).
- Let rref be the result of evaluating RelationalExpression.
- Let rval be GetValue(rref).
- Return the result of performing the strict equality comparison
rval === lval. (See 11.9.6)
तो अब हम 11.9.6 पर जाते हैं
11.9.6 The Strict Equality Comparison Algorithm
The comparison x === y, where x and y are values, produces true or false.
Such a comparison is performed as follows:
- If Type(x) is different from Type(y), return false.
- If Type(x) is Undefined, return true.
- If Type(x) is Null, return true.
- If Type(x) is Number, then
...
- If Type(x) is String, then return true if x and y are exactly the
same sequence of characters (same length and same characters in
corresponding positions); otherwise, return false.
बस। तर्कों के लिए लागू ट्रिपल बराबर संचालक सही है यदि तर्क तर्कों के समान हैं (समान लंबाई और समान पदों में समान वर्ण)।
इसलिए ===
उन मामलों में काम करेंगे जब हम उन तारों की तुलना करने की कोशिश कर रहे हैं जो अलग-अलग स्रोतों से आए होंगे, लेकिन जो हम जानते हैं कि आखिरकार समान मूल्य होंगे - हमारे कोड में इनलाइन स्ट्रिंग्स के लिए एक सामान्य पर्याप्त परिदृश्य। उदाहरण के लिए, यदि हमारे पास एक चर नाम है connection_state
, और हम यह जानना चाहते हैं कि निम्नलिखित में से कौन सा राज्य ['connecting', 'connected', 'disconnecting', 'disconnected']
अभी है, तो हम सीधे इसका उपयोग कर सकते हैं ===
।
लेकिन वहाँ अधिक है। 11.9.4 से ऊपर, एक छोटा नोट है:
NOTE 4
Comparison of Strings uses a simple equality test on sequences of code
unit values. There is no attempt to use the more complex, semantically oriented
definitions of character or string equality and collating order defined in the
Unicode specification. Therefore Strings values that are canonically equal
according to the Unicode standard could test as unequal. In effect this
algorithm assumes that both Strings are already in normalized form.
हम्म। अब क्या? बाहरी रूप से प्राप्त स्ट्रिंग्स, और सबसे अधिक संभावना है, अजीब यूनिकोडी होंगे, और हमारे कोमल ===
उन्हें न्याय नहीं करेंगे। localeCompare
बचाव में आता है:
15.5.4.9 String.prototype.localeCompare (that)
...
The actual return values are implementation-defined to permit implementers
to encode additional information in the value, but the function is required
to define a total ordering on all Strings and to return 0 when comparing
Strings that are considered canonically equivalent by the Unicode standard.
हम अब घर जा सकते हैं।
tl; डॉ;
जावास्क्रिप्ट में तारों की तुलना करने के लिए, उपयोग करें localeCompare
; यदि आप जानते हैं कि तार में कोई गैर-एएससीआईआई घटक नहीं है क्योंकि वे हैं, उदाहरण के लिए, आंतरिक कार्यक्रम स्थिरांक, तो ===
यह भी काम करता है।
JavaScript case insensitive string comparison
पर stackoverflow.com/questions/2140627/...