File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change 7676 * @example
7777 * <div class='norender'>
7878 * <code>
79- * console.log(1 == 1) // prints true to the console
80- * console.log(1 == '1' ); // prints true to the console
79+ * console.log(1 == 1); // prints true to the console
80+ * console.log('1' == 1 ); // prints true to the console
8181 * </code>
8282 * </div>
8383 */
100100 * @example
101101 * <div class='norender'>
102102 * <code>
103- * console.log(1 == 1) // prints true to the console
104- * console.log(1 == '1'); // prints false to the console
103+ * console.log(1 === 1); // prints true to the console
104+ * console.log(1 === '1'); // prints false to the console
105105 * </code>
106106 * </div>
107107 */
119119 * @example
120120 * <div class='norender'>
121121 * <code>
122- * console.log(100 > 1) // prints true to the console
122+ * console.log(100 > 1); // prints true to the console
123123 * console.log(1 > 100); // prints false to the console
124124 * </code>
125125 * </div>
138138 * @example
139139 * <div class='norender'>
140140 * <code>
141- * console.log(100 >= 100) // prints true to the console
141+ * console.log(100 >= 100); // prints true to the console
142142 * console.log(101 >= 100); // prints true to the console
143143 * </code>
144144 * </div>
157157 * @example
158158 * <div class='norender'>
159159 * <code>
160- * console.log(1 < 100) // prints true to the console
160+ * console.log(1 < 100); // prints true to the console
161161 * console.log(100 < 99); // prints false to the console
162162 * </code>
163163 * </div>
176176 * @example
177177 * <div class='norender'>
178178 * <code>
179- * console.log(100 <= 100) // prints true to the console
179+ * console.log(100 <= 100); // prints true to the console
180180 * console.log(99 <= 100); // prints true to the console
181181 * </code>
182182 * </div>
You can’t perform that action at this time.
0 commit comments