@@ -127,15 +127,15 @@ ES6 规格将这个标准流程,使用简写的方式表达。
127127> Return the result of performing Strict Equality Comparison ` x === y ` .
128128> 1 . If ` x ` is ` null ` and ` y ` is ` undefined ` , return ` true ` .
129129> 1 . If ` x ` is ` undefined ` and ` y ` is ` null ` , return ` true ` .
130- > 1 . If ` Type(x) ` is Number and ` Type(y) ` is String,\
130+ > 1 . If ` Type(x) ` is Number and ` Type(y) ` is String,
131131> return the result of the comparison ` x == ToNumber(y) ` .
132- > 1 . If ` Type(x) ` is String and ` Type(y) ` is Number,\
132+ > 1 . If ` Type(x) ` is String and ` Type(y) ` is Number,
133133> return the result of the comparison ` ToNumber(x) == y ` .
134134> 1 . If ` Type(x) ` is Boolean, return the result of the comparison ` ToNumber(x) == y ` .
135135> 1 . If ` Type(y) ` is Boolean, return the result of the comparison ` x == ToNumber(y) ` .
136- > 1 . If ` Type(x) ` is either String, Number, or Symbol and ` Type(y) ` is Object, then\
136+ > 1 . If ` Type(x) ` is either String, Number, or Symbol and ` Type(y) ` is Object, then
137137> return the result of the comparison ` x == ToPrimitive(y) ` .
138- > 1 . If ` Type(x) ` is Object and ` Type(y) ` is either String, Number, or Symbol, then\
138+ > 1 . If ` Type(x) ` is Object and ` Type(y) ` is either String, Number, or Symbol, then
139139> return the result of the comparison ` ToPrimitive(x) == y ` .
140140> 1 . Return ` false ` .
141141
0 commit comments