fix(learn): Remove unnecessary inline code tag in challenge (#41428)

* remove unnecessary inline code tag

* Update curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/comparison-with-the-less-than-or-equal-to-operator.md

Co-authored-by: Randell Dawson <5313213+RandellDawson@users.noreply.github.com>

* improve challenge wording

* improve challenge wording

* keep wording consistency

* keep wording consistency between similar challenges

Co-authored-by: Randell Dawson <5313213+RandellDawson@users.noreply.github.com>
pull/41440/head
Kelvin Sánchez 2021-03-10 14:16:03 -04:00 committed by GitHub
parent 5b760e50a3
commit 35a8f55515
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 5 deletions

View File

@ -11,7 +11,7 @@ dashedName: comparison-with-the-greater-than-operator
The greater than operator (`>`) compares the values of two numbers. If the number to the left is greater than the number to the right, it returns `true`. Otherwise, it returns `false`.
Like the equality operator, greater than operator will convert data types of values while comparing.
Like the equality operator, the greater than operator will convert data types of values while comparing.
**Examples**

View File

@ -11,7 +11,7 @@ dashedName: comparison-with-the-greater-than-or-equal-to-operator
The greater than or equal to operator (`>=`) compares the values of two numbers. If the number to the left is greater than or equal to the number to the right, it returns `true`. Otherwise, it returns `false`.
Like the equality operator, the `>=` will convert data types while comparing.
Like the equality operator, the greater than or equal to operator will convert data types while comparing.
**Examples**

View File

@ -9,7 +9,7 @@ dashedName: comparison-with-the-less-than-operator
# --description--
The <dfn>less than</dfn> operator (`<`) compares the values of two numbers. If the number to the left is less than the number to the right, it returns `true`. Otherwise, it returns `false`. Like the equality operator, <dfn>less than</dfn> operator converts data types while comparing.
The less than operator (`<`) compares the values of two numbers. If the number to the left is less than the number to the right, it returns `true`. Otherwise, it returns `false`. Like the equality operator, the less than operator converts data types while comparing.
**Examples**

View File

@ -9,7 +9,7 @@ dashedName: comparison-with-the-less-than-or-equal-to-operator
# --description--
The less than or equal to operator (`<=`) compares the values of two numbers. If the number to the left is less than or equal to the number to the right, it returns `true`. If the number on the left is greater than the number on the right, it returns `false`. Like the equality operator, `less than or equal to` converts data types.
The less than or equal to operator (`<=`) compares the values of two numbers. If the number to the left is less than or equal to the number to the right, it returns `true`. If the number on the left is greater than the number on the right, it returns `false`. Like the equality operator, the less than or equal to operator converts data types.
**Examples**

View File

@ -9,7 +9,7 @@ dashedName: comparison-with-the-strict-inequality-operator
# --description--
The strict inequality operator (`!==`) is the logical opposite of the strict equality operator. It means "Strictly Not Equal" and returns `false` where strict equality would return `true` and *vice versa*. Strict inequality will not convert data types.
The strict inequality operator (`!==`) is the logical opposite of the strict equality operator. It means "Strictly Not Equal" and returns `false` where strict equality would return `true` and *vice versa*. The strict inequality operator will not convert data types.
**Examples**