Merge pull request #6014 from AkiraLaine/fix/semicolon

fixed semicolon typo
pull/18182/head
Arsen Melikyan 2016-01-10 14:50:43 +04:00
commit e4fc17938e
1 changed files with 1 additions and 1 deletions

View File

@ -757,7 +757,7 @@
"title": "Declare String Variables",
"description": [
"Previously we have used the code",
"<code>var myName = \"your name\"</code>",
"<code>var myName = \"your name\";</code>",
"<code>\"your name\"</code> is called a <dfn>string</dfn> <dfn>literal</dfn>. It is a string because it is a series of zero or more characters enclosed in single or double quotes.",
"<h4>Instructions</h4>",
"Create two new <code>string</code> variables: <code>myFirstName</code> and <code>myLastName</code> and assign them the values of your first and last name, respectively."