আমি দীর্ঘকাল ধরে এ সম্পর্কে বিরক্ত ছিলাম, তাই অবশেষে আমি এটি নিয়ে গবেষণা করেছিলাম এবং জিনিসগুলি কেন সেইভাবে হয় তার জন্য আপনাকে এই দীর্ঘ বাতাসযুক্ত কারণটি দেই।
অনুমান থেকে :
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']
এখনই নীচের কোনটি রাজ্যের এটি জানতে চাই, আমরা সরাসরি এটি ব্যবহার করতে পারি ===
।
তবে আরও কিছু আছে। ১১.৯.৪ এর ঠিক উপরে, একটি সংক্ষিপ্ত নোট রয়েছে:
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
. com