Javascript -> JavaScript (English) (#35183)
* Javascript -> JavaScript (English) * Update technical documentation page for required change * Update use-class-syntax-to-define-a-constructor-function.english.md * Update left-factorials.md
This commit is contained in:
committed by
The Coding Aviator
parent
fed6ffb606
commit
e84ae45008
@@ -36,7 +36,7 @@ testEqual(10);
|
||||
The function first evaluates `if` the condition `(val == 12)` evaluates to `true`. If it does, it returns the statement between the curly braces ("Equal"). If it doesn't, it returns the next `return` statement outside them ("Not equal").
|
||||
|
||||
### Sources
|
||||
<span id="cite1">1</span>. ["Basic JavaScript: Comparison with the Equality Operator", fCC lesson at *Javascript Algorithms And Data Structures Certification*](https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/comparison-with-the-equality-operator)
|
||||
<span id="cite1">1</span>. ["Basic JavaScript: Comparison with the Equality Operator", fCC lesson at *JavaScript Algorithms And Data Structures Certification*](https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/comparison-with-the-equality-operator)
|
||||
|
||||
### Resources
|
||||
|
||||
|
@@ -40,9 +40,9 @@ testStrict(10);
|
||||
The function first evaluates `if` the condition `(val === 7)` evaluates to `true`. If it does, it returns the statement between the curly braces ("Equal"). If it doesn't, it returns the next `return` statement outside them ("Not equal").
|
||||
|
||||
### Sources
|
||||
<span id="cite1">1</span>. ["Basic JavaScript: Comparison with the Equality Operator", fCC lesson at *Javascript Algorithms And Data Structures Certification*](https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/comparison-with-the-equality-operator)
|
||||
<span id="cite1">1</span>. ["Basic JavaScript: Comparison with the Equality Operator", fCC lesson at *JavaScript Algorithms And Data Structures Certification*](https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/comparison-with-the-equality-operator)
|
||||
|
||||
<span id="cite2">2</span>. ["Basic JavaScript: Comparison with the Strict Equality Operator", fCC lesson at *Javascript Algorithms And Data Structures Certification*](https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/comparison-with-the-strict-equality-operator)
|
||||
<span id="cite2">2</span>. ["Basic JavaScript: Comparison with the Strict Equality Operator", fCC lesson at *JavaScript Algorithms And Data Structures Certification*](https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/comparison-with-the-strict-equality-operator)
|
||||
|
||||
### Resources
|
||||
|
||||
|
@@ -131,4 +131,4 @@ function cc(card) {
|
||||
* <a href='https://en.wikipedia.org/wiki/Card_counting' target='_blank' rel='nofollow'>Card counting at Wikipedia</a>
|
||||
* <a href='http://www.freecodecamp.com/challenges/selecting-from-many-options-with-switch-statements' target='_blank' rel='nofollow'>Challenge: Selecting from many options with Switch Statements</a>
|
||||
* <a href='http://www.freecodecamp.com/challenges/chaining-if-else-statements' target='_blank' rel='nofollow'>Challenge: Chaining If Else Statements</a>
|
||||
* <a href='http://www.freecodecamp.com/challenges/increment-a-number-with-javascript' target='_blank' rel='nofollow'>Challenge: Increment a Number with Javascript</a>
|
||||
* <a href='http://www.freecodecamp.com/challenges/increment-a-number-with-javascript' target='_blank' rel='nofollow'>Challenge: Increment a Number with JavaScript</a>
|
||||
|
@@ -3,7 +3,7 @@ title: Divide One Decimal by Another with JavaScript
|
||||
---
|
||||
# Divide One Decimal by Another with JavaScript
|
||||
|
||||
Javascript uses the `/` symbol for division.
|
||||
JavaScript uses the `/` symbol for division.
|
||||
|
||||
var quotient = 0.6 / 0.3; //quotient gets the value 2
|
||||
|
||||
|
@@ -3,7 +3,7 @@ title: Divide One Number by Another with JavaScript
|
||||
---
|
||||
# Divide One Number by Another with JavaScript
|
||||
|
||||
Javascript uses the `/` symbol for division.
|
||||
JavaScript uses the `/` symbol for division.
|
||||
|
||||
var quotient = 6 / 3; //quotient will get value 2
|
||||
|
||||
|
@@ -1,7 +1,7 @@
|
||||
---
|
||||
title: Basic Javascript
|
||||
title: Basic JavaScript
|
||||
---
|
||||
## Basic Javascript
|
||||
## Basic JavaScript
|
||||
|
||||
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/mathematics/quadratic-equations/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.
|
||||
|
||||
|
@@ -89,4 +89,4 @@ sequentialSizes(1);
|
||||
Since you already have a variable named `answer` defined and the function returns it, you can just modify its value on each group of case statements to fit the exercise requirements.
|
||||
|
||||
### Resources
|
||||
- ["Switch: Methods for multi-criteria case" - *MDN Javascript Reference*](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/switch)
|
||||
- ["Switch: Methods for multi-criteria case" - *MDN JavaScript Reference*](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/switch)
|
||||
|
@@ -36,7 +36,7 @@ The function first evaluates `if` the condition `(a === b)` evaluates to `true`
|
||||
|
||||
### Sources
|
||||
|
||||
<span id="cite1">1</span>. ["Basic JavaScript: Comparison with the Strict Equality Operator", fCC lesson at *Javascript Algorithms And Data Structures Certification*](https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/comparison-with-the-strict-equality-operator)
|
||||
<span id="cite1">1</span>. ["Basic JavaScript: Comparison with the Strict Equality Operator", fCC lesson at *JavaScript Algorithms And Data Structures Certification*](https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/comparison-with-the-strict-equality-operator)
|
||||
|
||||
### Resources
|
||||
|
||||
|
@@ -41,4 +41,4 @@ isLess(10, 15);
|
||||
Run code at [repl.it](https://repl.it/@AdrianSkar/Basic-Js-Returning-boolean-from-function).
|
||||
|
||||
### Resources
|
||||
- ["Less than or equal operator (<=)" - *MDN Javascript Reference*](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Comparison_Operators#Less_than_or_equal_operator_(%3C))
|
||||
- ["Less than or equal operator (<=)" - *MDN JavaScript Reference*](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Comparison_Operators#Less_than_or_equal_operator_(%3C))
|
||||
|
@@ -7,11 +7,11 @@ title: Understanding the Differences between the freeCodeCamp and Browser Consol
|
||||
So were exactly do you run this *console.log()* command?
|
||||
In order to see the difference between the live console (terminal of freecodecamp) and our browser console we need to open up the console in our browser.
|
||||
Contemporary internet browser have a built in feature called Developer Tools which, among others contains a live console.
|
||||
In this console we can execute Javascript commands and see the result. It behaves in a same manner as the window we write code here in Freecodecamp!
|
||||
In this console we can execute JavaScript commands and see the result. It behaves in a same manner as the window we write code here in Freecodecamp!
|
||||
|
||||
***Please follow the instructions provided and copy paste the JS code provided to the example from FCC to your browser's console!***
|
||||
|
||||
Depending on your browser, in order to open up the Javascript console you need to:
|
||||
Depending on your browser, in order to open up the JavaScript console you need to:
|
||||
|
||||
## Chrome:
|
||||
* Click the the following: Menu->More Tools->Developer Tools->Console tab
|
||||
|
@@ -57,7 +57,7 @@ console.log(increment(5)); // returns NaN
|
||||
|
||||
Relevant Links:
|
||||
|
||||
[Javascript default parameters](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Default_parameters)
|
||||
[JavaScript default parameters](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Default_parameters)
|
||||
|
||||
# :clipboard: NOTES FOR CONTRIBUTIONS:
|
||||
|
||||
|
@@ -29,5 +29,5 @@ var new_s = s.myMap(function(item){
|
||||
```
|
||||
|
||||
### Useful Links
|
||||
[this. Javascript MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/this)<br/>
|
||||
[this. Javascript W3Schools](https://www.w3schools.com/js/js_this.asp)
|
||||
[this. JavaScript MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/this)<br/>
|
||||
[this. JavaScript W3Schools](https://www.w3schools.com/js/js_this.asp)
|
||||
|
@@ -1,7 +1,7 @@
|
||||
---
|
||||
title: Javascript Algorithms and Data Structures
|
||||
title: JavaScript Algorithms and Data Structures
|
||||
---
|
||||
## Javascript Algorithms and Data Structures
|
||||
## JavaScript Algorithms and Data Structures
|
||||
|
||||
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/mathematics/quadratic-equations/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.
|
||||
|
||||
|
@@ -3,7 +3,7 @@ title: Intermediate Algorithm Scripting
|
||||
---
|
||||
## Intermediate Algorithm Scripting
|
||||
|
||||
This section contains intermediate level coding problems that will test your ability to solve complex problems similar to those that you may see in real situations using Javascript. All the best!
|
||||
This section contains intermediate level coding problems that will test your ability to solve complex problems similar to those that you may see in real situations using JavaScript. All the best!
|
||||
<!-- The article goes here, in GitHub-flavored Markdown. Feel free to add YouTube videos, images, and CodePen/JSBin embeds -->
|
||||
|
||||
#### More Information:
|
||||
|
@@ -1,7 +1,7 @@
|
||||
---
|
||||
title: Javascript Algorithms and Data Structures Projects
|
||||
title: JavaScript Algorithms and Data Structures Projects
|
||||
---
|
||||
## Javascript Algorithms and Data Structures Projects
|
||||
## JavaScript Algorithms and Data Structures Projects
|
||||
|
||||
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/mathematics/quadratic-equations/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.
|
||||
|
||||
|
Reference in New Issue
Block a user