From fe0ca1e732fb4552e793daab98cb4b9201afa03a Mon Sep 17 00:00:00 2001 From: Eric Leung Date: Thu, 10 Mar 2016 00:09:18 -0800 Subject: [PATCH] Fix javascript to JavaScript in Basic JavaScript --- .../basic-javascript.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/challenges/01-front-end-development-certification/basic-javascript.json b/challenges/01-front-end-development-certification/basic-javascript.json index 70f983a04a..fac504ca85 100644 --- a/challenges/01-front-end-development-certification/basic-javascript.json +++ b/challenges/01-front-end-development-certification/basic-javascript.json @@ -417,7 +417,7 @@ }, { "id": "56533eb9ac21ba0edf2244ac", - "title": "Increment a Number with Javascript", + "title": "Increment a Number with JavaScript", "description": [ "You can easily increment or add one to a variable with the ++ operator.", "i++;", @@ -461,7 +461,7 @@ }, { "id": "56533eb9ac21ba0edf2244ad", - "title": "Decrement a Number with Javascript", + "title": "Decrement a Number with JavaScript", "description": [ "You can easily decrement or decrease a variable by one with the -- operator.", "i--;", @@ -607,7 +607,7 @@ }, { "id": "56533eb9ac21ba0edf2244ae", - "title": "Finding a Remainder in Javascript", + "title": "Finding a Remainder in JavaScript", "description": [ "The remainder operator % gives the remainder of the division of two numbers.", "Example", @@ -985,7 +985,7 @@ "id": "56533eb9ac21ba0edf2244b4", "title": "Quoting Strings with Single Quotes", "description": [ - "String values in JavaScript may be written with single or double quotes, so long as you start and end with the same type of quote. Unlike some languages, single and double quotes are functionally identical in Javascript.", + "String values in JavaScript may be written with single or double quotes, so long as you start and end with the same type of quote. Unlike some languages, single and double quotes are functionally identical in JavaScript.", "\"This string has \\\"double quotes\\\" in it\"", "The value in using one or the other has to do with the need to escape quotes of the same type. If you have a string with many double quotes, this can be difficult to read and write. Instead, use single quotes:", "'This string has \"double quotes\" in it. And \"probably\" lots of them.'", @@ -1013,7 +1013,7 @@ "challengeType": 1, "nameEs": "Citando cadenas con comillas simples", "descriptionEs": [ - "Los valores de Cadenas en JavaScript pueden ser escritos con comillas o apóstrofes, siempre y cuando inicien y terminen con el mismo tipo de cita. A diferencia de algunos lenguajes, apóstrofes y comillas son funcionalmente identicas en Javascript.", + "Los valores de Cadenas en JavaScript pueden ser escritos con comillas o apóstrofes, siempre y cuando inicien y terminen con el mismo tipo de cita. A diferencia de algunos lenguajes, apóstrofes y comillas son funcionalmente identicas en JavaScript.", "\"Esta cadena tiene \\\"comillas\\\" en esta\"", "La ventaja de usar una o la otra tiene que ver con la necesidad de escapar comillas. Si tu tienes una cadena con algunas comillas, esta puede ser difícil de leer y escribir. En su lugar, usa apóstrofes:", "'Esta cadena tiene \"comillas\" en esta. Y \"probablemente\" muchas de ellas.'", @@ -1361,7 +1361,7 @@ "id": "56533eb9ac21ba0edf2244ba", "title": "Understand String Immutability", "description": [ - "In Javascript, String values are immutable, which means that they cannot be altered once created.", + "In JavaScript, String values are immutable, which means that they cannot be altered once created.", "For example, the following code:", "
var myStr = \"Bob\";
myStr[0] = \"J\";
", "cannot change the value of myStr to \"Job\", because the contents of myStr cannot be altered. Note that this does not mean that myStr cannot be changed, just that the individual characters of a string literal cannot be changed. The only way to change myStr would be to assign it with a new string, like this:",