Grammar change and readability of example (#30507)

This commit is contained in:
Chelsea Marie Hicks
2019-02-05 17:44:05 +02:00
committed by Aditya
parent 7ae6577cda
commit 8d7bd3906c

View File

@ -8,8 +8,8 @@ challengeType: 1
<section id='description'> <section id='description'>
<code>Number</code> is a data type in JavaScript which represents numeric data. <code>Number</code> is a data type in JavaScript which represents numeric data.
Now let's try to add two numbers using JavaScript. Now let's try to add two numbers using JavaScript.
JavaScript uses the <code>+</code> symbol as addition operation when placed between two numbers. JavaScript uses the <code>+</code> symbol as an addition operation when placed between two numbers.
<strong>Example</strong> <strong>Example:</strong>
<blockquote>myVar = 5 + 10; // assigned 15</blockquote> <blockquote>myVar = 5 + 10; // assigned 15</blockquote>
</section> </section>