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

Co-authored-by: Randell Dawson <5313213+RandellDawson@users.noreply.github.com>
This commit is contained in:
Kelvin Sánchez
2021-02-19 00:14:50 -04:00
committed by GitHub
parent e8cfefd1bb
commit f08174b5b1

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`. 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, `greater than or equal to` operator will convert data types while comparing. Like the equality operator, the `>=` will convert data types while comparing.
**Examples** **Examples**