freeCodeCamp/curriculum/challenges/english/02-javascript-algorithms-an.../functional-programming
Nicholas Carrigan (he/him) 7117919d36
chore(learn): audit javascript algorithms and data structures (#41092)
* chore(learn): audit basic algorithm scripting

* chore(learn): audit basic data structures

* chore(learn): audit basic javascript

* chore(learn): audit debugging

* chore(learn): audit es6

* chore(learn): audit functional programming

* chore(learn): audit intermidate algorithms

* chore(learn): audit js projects

* chore(learn): audit object oriented programming

* chore(learn): audit regex

* fix(learn): remove stray .

* fix(learn): string to code

* fix(learn): missed some

* fix(learn): clarify strings

Based on Randy's feedback, clarifies string instances where quotes
were removed in favour of back ticks.

* fix: apply suggestions - thanks Randy! :)

Co-authored-by: Randell Dawson <5313213+RandellDawson@users.noreply.github.com>

* fix: non-suggestion comments

* chore(learn): remove comments from codes

Removes the comments from the description and instruction code
blocks to ensure that all relevant information is translatable.

* fix: Apply suggestions from code review

Co-authored-by: Shaun Hamilton <51722130+ShaunSHamilton@users.noreply.github.com>

* fix: revert crowdin fix

* Update curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/mutations.md

Co-authored-by: Randell Dawson <5313213+RandellDawson@users.noreply.github.com>

* fix: Apply suggestions from code review

Co-authored-by: Shaun Hamilton <51722130+ShaunSHamilton@users.noreply.github.com>

* Update curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/use-destructuring-assignment-to-assign-variables-from-arrays.md

Co-authored-by: Shaun Hamilton <51722130+ShaunSHamilton@users.noreply.github.com>

* fix: Apply suggestions from code review

Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>
Co-authored-by: Shaun Hamilton <51722130+ShaunSHamilton@users.noreply.github.com>

* chore: change voice

* fix: Christopher Nolan

* fix: expressions would evaluate

* fix: will -> would

* Update curriculum/challenges/english/02-javascript-algorithms-and-data-structures/object-oriented-programming/add-methods-after-inheritance.md

Co-authored-by: Randell Dawson <5313213+RandellDawson@users.noreply.github.com>

* fix: to work to push

* Update curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/iterate-with-javascript-for-loops.md

Co-authored-by: Shaun Hamilton <51722130+ShaunSHamilton@users.noreply.github.com>

* Update curriculum/challenges/english/02-javascript-algorithms-and-data-structures/object-oriented-programming/add-methods-after-inheritance.md

Co-authored-by: Randell Dawson <5313213+RandellDawson@users.noreply.github.com>

Co-authored-by: Randell Dawson <5313213+RandellDawson@users.noreply.github.com>
Co-authored-by: Shaun Hamilton <51722130+ShaunSHamilton@users.noreply.github.com>
Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>
2021-03-02 17:12:12 -07:00
..
add-elements-to-the-end-of-an-array-using-concat-instead-of-push.md chore(learn): audit javascript algorithms and data structures (#41092) 2021-03-02 17:12:12 -07:00
apply-functional-programming-to-convert-strings-to-url-slugs.md chore(learn): audit javascript algorithms and data structures (#41092) 2021-03-02 17:12:12 -07:00
avoid-mutations-and-side-effects-using-functional-programming.md feat(curriculum): restore seed + solution to Chinese (#40683) 2021-01-12 19:31:00 -07:00
combine-an-array-into-a-string-using-the-join-method.md chore(learn): audit javascript algorithms and data structures (#41092) 2021-03-02 17:12:12 -07:00
combine-two-arrays-using-the-concat-method.md chore(learn): audit javascript algorithms and data structures (#41092) 2021-03-02 17:12:12 -07:00
implement-map-on-a-prototype.md feat(curriculum): restore seed + solution to Chinese (#40683) 2021-01-12 19:31:00 -07:00
implement-the-filter-method-on-a-prototype.md feat(curriculum): restore seed + solution to Chinese (#40683) 2021-01-12 19:31:00 -07:00
introduction-to-currying-and-partial-application.md chore(learn): audit javascript algorithms and data structures (#41092) 2021-03-02 17:12:12 -07:00
learn-about-functional-programming.md feat(curriculum): restore seed + solution to Chinese (#40683) 2021-01-12 19:31:00 -07:00
pass-arguments-to-avoid-external-dependence-in-a-function.md feat(curriculum): restore seed + solution to Chinese (#40683) 2021-01-12 19:31:00 -07:00
refactor-global-variables-out-of-functions.md feat(curriculum): restore seed + solution to Chinese (#40683) 2021-01-12 19:31:00 -07:00
remove-elements-from-an-array-using-slice-instead-of-splice.md chore(learn): audit javascript algorithms and data structures (#41092) 2021-03-02 17:12:12 -07:00
return-a-sorted-array-without-changing-the-original-array.md feat(learn): add tests to use a callback function in the sort method (#40847) 2021-02-10 17:05:23 +05:30
return-part-of-an-array-using-the-slice-method.md chore(learn): audit javascript algorithms and data structures (#41092) 2021-03-02 17:12:12 -07:00
sort-an-array-alphabetically-using-the-sort-method.md chore(learn): audit javascript algorithms and data structures (#41092) 2021-03-02 17:12:12 -07:00
split-a-string-into-an-array-using-the-split-method.md chore(learn): audit javascript algorithms and data structures (#41092) 2021-03-02 17:12:12 -07:00
understand-functional-programming-terminology.md feat(curriculum): restore seed + solution to Chinese (#40683) 2021-01-12 19:31:00 -07:00
understand-the-hazards-of-using-imperative-code.md feat(curriculum): restore seed + solution to Chinese (#40683) 2021-01-12 19:31:00 -07:00
use-higher-order-functions-map-filter-or-reduce-to-solve-a-complex-problem.md feat(curriculum): restore seed + solution to Chinese (#40683) 2021-01-12 19:31:00 -07:00
use-the-every-method-to-check-that-every-element-in-an-array-meets-a-criteria.md chore(learn): audit javascript algorithms and data structures (#41092) 2021-03-02 17:12:12 -07:00
use-the-filter-method-to-extract-data-from-an-array.md chore(learn): audit javascript algorithms and data structures (#41092) 2021-03-02 17:12:12 -07:00
use-the-map-method-to-extract-data-from-an-array.md chore(learn): audit javascript algorithms and data structures (#41092) 2021-03-02 17:12:12 -07:00
use-the-reduce-method-to-analyze-data.md chore(learn): audit javascript algorithms and data structures (#41092) 2021-03-02 17:12:12 -07:00
use-the-some-method-to-check-that-any-elements-in-an-array-meet-a-criteria.md chore(learn): audit javascript algorithms and data structures (#41092) 2021-03-02 17:12:12 -07:00