Commit Graph

206 Commits (1ea96db2e8cb9d2276ee682b39578161a59efa5c)

Author SHA1 Message Date
Prabhat Kumar Sahu e5ebcec171 Update declare-a-read-only-variable-with-the-const-keyword.english.md 2018-10-16 15:52:06 +09:00
Gökhan Gurbetoğlu 0bae15e8c3 Clarification of the declaration order overriding (#19046)
* Clarification of the declaration order overriding

Previous text was talking about an override but it may also confuse readers that the override was done in the order of the listing of class names inside the h1.
I also added an extra case to better clarify the situation.

* Small change mentioning the order of declaration

Missed an order of declaration emphasis on my previous commit, adding it on this one.
2018-10-15 22:23:15 -05:00
Prabhat Kumar Sahu 9f98cdce3b Solution prevent-object-mutation.english.md (#18767)
* Update prevent-object-mutation.english.md

* Improved JavaScript style
2018-10-15 21:04:52 -03:00
Prabhat Kumar Sahu b13e23037c Solution mutate-an-array-declared-with-const.english.md (#18759)
* Update mutate-an-array-declared-with-const.english.md

* Improved JavaScript style
2018-10-15 20:54:43 -03:00
Prabhat Kumar Sahu 1e3804889e Solution compare-scopes-of-the-var-and-let-keywords.english.md (#18756)
* Update compare-scopes-of-the-var-and-let-keywords.english.md

* Improved JavaScript style
2018-10-15 20:51:56 -03:00
Prabhat Kumar Sahu 7d0212dfb8 Solution explore-differences-between-the-var-and-let-keywords.english.md (#18752)
* Update explore-differences-between-the-var-and-let-keywords.english.md

* Improve JavaScript style
2018-10-15 20:50:04 -03:00
Prabhat Kumar Sahu 6cb1a95c72 Solution use-multiple-conditional-ternary-operators.english.md (#18750)
* Update use-multiple-conditional-ternary-operators.english.md

* Update use-multiple-conditional-ternary-operators.english.md

* Improve JavaScript code style
2018-10-15 20:46:43 -03:00
petern 67cc558da6 Add solutions and update functional programming challenge instructions (#18931)
* feat: Update intro to currying

- Add solutions
- Add ES6 examples

* feat: Add solution to FP mutations

* feat: Add solution to function-programming map

- Add solutions, both vanilla and ES6 arrow functions
- Add JSON.stringify to console.log, makes it easier to see what the resulting output is rather than showing
e.g. [object, object, object]

* update: used the contributor's ES6 solution

Contributor originally had a non-ES6 solution and an ES6 solution.  I removed the non-ES6 solution.
2018-10-15 16:43:02 -07:00
Prabhat Kumar Sahu 459b8340f0 Solution use-the-conditional-ternary-operator.english.md (#18747)
* Update use-the-conditional-ternary-operator.english.md

* Use strict equals
2018-10-15 20:41:38 -03:00
Prabhat Kumar Sahu 7b8a6e7385 Solution use-the-parseint-function-with-a-radix.english.md (#18746)
* Update use-the-parseint-function-with-a-radix.english.md

* Improved JavaScript formatting
2018-10-15 20:40:05 -03:00
Prabhat Kumar Sahu 1f9e26c7fe Solution use-the-parseint-function.english.md (#18743)
* Update use-the-parseint-function.english.md

* Removed blank line
2018-10-15 20:38:37 -03:00
Jonathan Grah 65d47b6eeb fix: solution for checking if an object has a property (#19390)
Signed-off-by: Jonathan Grah <theflametrooper@gmail.com>
2018-10-15 16:04:24 -07:00
Ryan Bowlen 4a29977564 Added Solution to Challenge (#19372)
Added a Solution to "Basic Data Structures: Generate an Array of All Object Keys with Object.keys()" 's "Get a Hint" documentation.
2018-10-15 23:19:27 +01:00
Ryan Bowlen f4353999e3 Add solution to Challenge (#19369)
Added a solution to "Iterate Through the Keys of an Object with a for...in Statement"'s "Get a Hint" documentation.
2018-10-16 03:34:14 +05:30
Ryan Bowlen 1200859c07 Added Solution (#19367)
Added a solution for the challenge's "Get a Hint" documentation.
2018-10-15 22:29:05 +01:00
Pedro Rosental Zamora 2f266e9cea Portuguese translation correction (#18627) 2018-10-15 15:01:17 -03:00
joseildo filho 5eccd7cd4f Update visualize-data-with-a-heat-map.portuguese.md (#19267) 2018-10-15 14:44:51 -03:00
Miguel S. Mendoza 8db99b7c16 Languate Updates (#19315)
Spanish people use "array" to refer to an array, and "matrix" to refer to a multidimensional array. If you use "matriz" to refer to an array you will confuse all spanish developers.
deje que outArray -> let outArray
deja que nuestra Variable = nuestroArray [0]; -> let ourVariable = ourArray[0];
en cualquier cosa que desee, además de "b" .  -> en cualquier cosa que dese, que NO SEA "b" se entiende mejor.
2018-10-15 14:19:00 -03:00
Juliano Rafael a092d703b5 Update add-an-accessible-date-picker pt-br translation (#19290)
Make the description more clear and correct a few mistakes from google translator.
2018-10-15 14:10:38 -03:00
Juliano Rafael 600cda1fae Update pt-br translation on colorblindness challenge (#19292)
Change 'greens' to 'tons de verde'
2018-10-15 14:07:01 -03:00
Miguel S. Mendoza c6387859b7 Language Updates (#19312) 2018-10-15 13:56:45 -03:00
Miguel S. Mendoza a6dab66f0c Dejar -> let (#19317) 2018-10-15 13:52:24 -03:00
Miguel S. Mendoza bb541d86ba Language Updates (#19321)
articulos -> elementos
función -> function
matriz -> array
2018-10-15 13:51:01 -03:00
Danilo Gila de Santana ee5d130f04 add missing translation to portuguese (#19322) 2018-10-15 13:31:36 -03:00
johngeesey a293769892 fix(coding): remove misleading test
A test that featured nested arrays just happens to work, but nested arrays will not be removed if they’re duplicates by the current solution of this challenge. See issue #18265
2018-10-15 19:31:54 +09:00
Franklin Wang e6402d3d6f Update breadth-first-search.english.md (#18900) 2018-10-14 00:28:59 +01:00
jefferson2z abc6c3c208 Fix typo on OOP challenge (#18616)
* Fix type on OOP as requested on issue #18091

fix: 
numLegs: 2 to numLegs: 4 

on challenge:
 Remember to Set the Constructor Property when Changing the Prototype

* Update remember-to-set-the-constructor-property-when-changing-the-prototype.english.md
2018-10-14 04:34:41 +05:30
Martin e6718ae851 Update of Product Design, UX Design and User Flow articles (#18709)
* User Flow: Information, Articles, Youtube update

Explanation on what is User Flow with youtube videos and articles for reference and/or resource.

* Update of UX Design article

Update the article with more information and more links to articles and books.

* Product Design: Info, Articles, Youtube update

Explanation on what is Product Design with youtube videos and articles for reference and/or resource.

* Update description of Retina Display

As reported in issue #18129, there is a lack of explanation on what a retina display is and some users find it difficult to understand what they are doing exactly, so I added a short explanation on what a High-Resolution Display is and what a Retina Display is.
2018-10-13 16:01:40 -05:00
Yoelvis Jiménez 640aaf9c48 Enhaced translation for "ignoring case" (#18694)
In spanish, the "ignoring case" statement is better translated as "ignorando mayúsculas y minúsculas".
More information: 
https://www.linguee.es/ingles-espanol/traduccion/case+insensitive.html
https://spanish.stackexchange.com/questions/17018/case-sensitive-en-castellano
2018-10-13 15:48:33 -05:00
Daniel Henrique Lelis de Almeida eb60d6a399 Fixed title with with wrong translation (#18852)
The property 'align-items' shouldn't be translated.
2018-10-13 13:13:17 -05:00
Daniel Henrique Lelis de Almeida e74f7ee621 Fixed title translation. (#18849) 2018-10-13 13:11:04 -05:00
Daniel Henrique Lelis de Almeida e577400e3a Fixed miss translation (#18853)
We often call "Literal Objects" as "Objetos Literais"
2018-10-13 13:07:16 -05:00
Daniel Henrique Lelis de Almeida 67ccf9b087 Fixed miss translation (#18854)
'Let' shouldn't be translated
2018-10-13 13:06:58 -05:00
Daniel Henrique Lelis de Almeida e4db693d25 Fixed miss translation (#18855)
'React' shouldn't be translated.
2018-10-13 13:06:11 -05:00
Beau Carnes 2ca3a2093f Add languages Russian, Arabic, Chinese, Portuguese (#18305) 2018-10-11 03:33:03 +05:30
Beau Carnes e3f9dc4b86 feat: add Spanish and language parser 2018-10-11 02:15:05 +05:30
Bouncey c2a45b58be fix(spanish-md): Address some formatting issues for Spanish md 2018-10-11 02:15:05 +05:30
Bouncey ee9f6b2d72 chore(meta): Move challenge meta to challenges root 2018-10-11 02:15:05 +05:30
Jared 0b4f4c2aef fixed typo 2018-10-10 09:29:39 +01:00
Jared d23ca70e21 fixed typo 2018-10-10 09:29:39 +01:00
halcyondays22 5bac4d3818 fix: typos in JavaScript Algorithms & Data Structures challenges 2018-10-10 09:26:45 +01:00
Camille Hagenbourger 3f328b73dc Fix Euler Project problem 19 2018-10-10 13:56:57 +09:00
Derek Kim 6fb3b0503e Fix for #18214 2018-10-09 10:54:53 +01:00
Lauren Van Sloun 0d5fec5e21 Fixed typo issue in Iterate Over All Properties 2018-10-09 02:54:25 +05:30
Beau Carnes d1751adc9e fix: add meta.json 2018-10-08 15:46:27 -04:00
Beau Carnes 0d53170798 docs: add rest of Spanish docs for project Euler 2018-10-08 13:51:51 -04:00
Beau Carnes fcced4a6c3 docs: add Spanish docs 2018-10-08 13:34:43 -04:00
Beau Carnes 46d8d61776 docs: update guide url 2018-10-08 11:02:25 -04:00
Bouncey ac1ea780fc fix(challenge-md): Fix formatting errors 2018-10-08 12:54:03 +01:00
petergrainger e0e8ab8409 fix: clarify test text in line with test functionality 2018-10-08 11:38:29 +01:00
Stuart Taylor 6d9d0c992e fix(test): Remove placholder text
I broke the test trying out a find/replace regex. This PR fixes it.
2018-10-08 10:02:30 +01:00
Bouncey a859035023 fix(challenge-md): Fix quotes that failed in the transform 2018-10-08 11:38:26 +05:30
Bouncey 8f39bc1288 chore(curriculum): Remove files in wrong format 2018-10-05 15:58:12 +01:00
Bouncey 8c38dfe861 fix(challenge-md): Fix file names and preserve challenge order in meta.json 2018-10-02 15:13:04 +01:00
Bouncey 81a1f0c4f8 feat(challenge-md): Add initial markdown challenge files 2018-09-30 23:24:46 +01:00
Mrugesh Mohapatra 67929d80ff chore: preparing for the move 2018-09-27 12:36:41 +05:30