From 66b24ff1314379ef3fdcdeabe4629001cd644149 Mon Sep 17 00:00:00 2001 From: meanmegajean <44273878+meanmegajean@users.noreply.github.com> Date: Sat, 27 Oct 2018 14:11:23 -0600 Subject: [PATCH] Add the text "Here is an example:" to article (#20071) --- .../javascript/multiply-two-numbers-with-javascript/index.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/guide/english/javascript/multiply-two-numbers-with-javascript/index.md b/guide/english/javascript/multiply-two-numbers-with-javascript/index.md index 8d547c6bc9..964a461fa8 100644 --- a/guide/english/javascript/multiply-two-numbers-with-javascript/index.md +++ b/guide/english/javascript/multiply-two-numbers-with-javascript/index.md @@ -3,6 +3,8 @@ title: Multiply Two Numbers with JavaScript --- JavaScript uses use the `*` symbol for multiplication. +Here is an example: + var product = 8 * 10; the 'product' would have the value '80' after this line.