Add the text "Here is an example:" to article (#20071)

This commit is contained in:
meanmegajean
2018-10-27 14:11:23 -06:00
committed by Christopher McCormack
parent 770b5281c2
commit 66b24ff131

View File

@ -3,6 +3,8 @@ title: Multiply Two Numbers with JavaScript
--- ---
JavaScript uses use the `*` symbol for multiplication. JavaScript uses use the `*` symbol for multiplication.
Here is an example:
var product = 8 * 10; var product = 8 * 10;
the 'product' would have the value '80' after this line. the 'product' would have the value '80' after this line.