remove misused <dfn> tags
This commit is contained in:
@@ -8,7 +8,7 @@ forumTopicId: 16158
|
||||
|
||||
## Description
|
||||
<section id='description'>
|
||||
We can access the data inside arrays using <dfn>indexes</dfn>.
|
||||
We can access the data inside arrays using indexes.
|
||||
Array indexes are written in the same bracket notation that strings use, except that instead of specifying a character, they are specifying an entry in the array. Like strings, arrays use <dfn>zero-based</dfn> indexing, so the first element in an array is element <code>0</code>.
|
||||
<br />
|
||||
<strong>Example</strong>
|
||||
|
||||
@@ -8,7 +8,7 @@ forumTopicId: 16784
|
||||
|
||||
## Description
|
||||
<section id='description'>
|
||||
There are many <dfn>comparison operators</dfn> in JavaScript. All of these operators return a boolean <code>true</code> or <code>false</code> value.
|
||||
There are many comparison operators in JavaScript. All of these operators return a boolean <code>true</code> or <code>false</code> value.
|
||||
The most basic operator is the equality operator <code>==</code>. The equality operator compares two values and returns <code>true</code> if they're equivalent or <code>false</code> if they are not. Note that equality is different from assignment (<code>=</code>), which assigns the value at the right of the operator to a variable in the left.
|
||||
|
||||
```js
|
||||
|
||||
Reference in New Issue
Block a user