summaryrefslogtreecommitdiffhomepage
path: root/javascript.html.markdown
Commit message (Collapse)AuthorAgeLines
* add labeled loop breaking for Javascript (#2539)Yi Hong Ang2016-10-31-0/+11
|
* Added new resource to javascriptRyan2015-10-31-2/+5
|
* Adding a small blurb to extend upon string concatinationKyle Mendes2015-10-28-0/+4
|
* [javascript/en] Re-add note about truthiness of wrapped primitivesAdam Brenecki2015-10-28-0/+4
| | | | | | | Previous incarnations of this section had `Number(0)` instead of `new Number(0)`, which actually returns `0` due to the absence of the `new` keyword; this commit re-adds that section and better still, makes it actually correct!
* [javascript/en] Formatting fixAdam Brenecki2015-10-28-1/+1
|
* [javascript/en] Move comparisons to other languages into preambleAdam Brenecki2015-10-28-5/+8
|
* [javascript/en] Spacing and capitalization of commentsCorban Mailloux2015-10-27-8/+9
| | | ... and a few grammar fixes.
* "wan't" -> "want"Corban Mailloux2015-10-27-1/+1
|
* Added resources to read for JavascriptLeonardy Kristianto2015-10-28-0/+7
|
* Remove "feedback", fix link markdownHunter Stevens2015-10-23-24/+24
|
* fix #1726, thanks @fisktechven2015-10-21-1/+1
|
* Fixed bracket placementSawyer Charles2015-10-19-5/+2
|
* removed ()Sawyer Charles2015-10-19-1/+1
|
* [javascript/en] Added setIntervalSawyer Charles2015-10-19-0/+6
| | | Added the setInterval function provided by most browsers
* Merge pull request #1537 from xtrasmal/patch-1Levi Bostian2015-10-18-0/+4
|\ | | | | Updated javascript.html.markdown
| * Updated javascript.html.markdownXander Smalbil2015-10-15-0/+4
| | | | | | Added some additional information on declaring variables.
* | [javascript/en] Small typo fixCameron Wood2015-10-18-1/+1
| | | | | | | | Just a simple 1-word typo fix
* | Adding modulo division to JavaScript articlevenegu2015-10-17-4/+9
| |
* | Added backticks for a keyword.bharathkkb2015-10-16-1/+1
|/ | | | Added backticks for the “this” keyword.
* Merge pull request #1372 from raphaelbn/patch-1Levi Bostian2015-10-09-0/+20
|\ | | | | [javascript/en] Added for/in loop JavaScript
| * Added for/in loop JavaScriptRaphael Nascimento2015-10-08-3/+3
| | | | | | Fixing code style
| * [javascript/en] Added for/in loop JavaScriptRaphael Nascimento2015-10-06-1/+14
| | | | | | more explanation about for/in java script.
| * Update javascript.html.markdownRaphael Nascimento2015-10-06-0/+7
| | | | | | For/In loop JavaScript
* | remove extra whitespace, explain NaNGabriel Halley2015-10-07-6/+6
|/
* [javascript] Fix for issue 1248Philip Rowan2015-10-01-3/+0
| | | | https://github.com/adambard/learnxinyminutes-docs/issues/1248
* [javascript/zh] Translation trackingjasonqu2015-03-06-2/+2
|
* Add semicolon to maximine consistency.Nimit Kalra2015-02-25-1/+1
| | | | | | Added a semicolon to conform with statement at top of guide: // Because those cases can cause unexpected results, we'll keep on using // semicolons in this guide.
* javascript/en: added some md formattingJohn Gabriele2015-02-03-29/+31
| | | | | Added some markdown formatting to the comments throughout to clarify meaning. Also tweaked a couple of other quote marks as well. Also shortened a couple of long lines. More to do, but stopped here for now. :)
* Merge pull request #832 from isomorphisms/patch-5Adam Bard2014-11-12-0/+4
|\ | | | | more oddities
| * more odditiesi2014-10-28-0/+4
| | | | | | JavaScript is full of oddities .. I definitely wouldn't claim everything works "as it should" .. you don't have to include the gotcha's but I don't know, they're not that confusing for me.
* | use propernotation for decimalsFrederik Ring2014-10-30-1/+1
| |
* | basic arithmetic *doesn't* worki2014-10-28-3/+4
|/ | | It's not really true that arithmetic is accurate in JavaScript.
* Merge pull request #828 from ml242/masterAdam Bard2014-10-27-7/+9
|\ | | | | Use === in js tutorial except once demonstrating ==
| * Your Name: Mattml2422014-10-27-7/+9
| | | | | | | | | | | | | | | | | | | | | | Subject Line: Addresses Comparisons in Javascript What Happened: I believe that starting out with the double equals instead of the triple equals for strict comparison checking is incorrect. Because double equals uses type coercion, it is more of a feature the needs to be understood. Beginners looking at the language should look upon the stricter method as the proper one because it is less likely to give a surprising result. I also tried to address the behaviour by adding an example to the double equals comparison. Hope that the community is interested in pulling in these changes, they stem from teaching beginners javaScript but I am by no means the authority.
* | [javascript/*] typeof is an operand and not a function/method - fix usage / ↵m902014-08-09-2/+2
| | | | | | | | remove parens
* | Changed "complimenting" to "complementing".Nati2014-06-10-1/+1
|/
* spaceAriel2014-03-10-1/+1
|
* Added a bit of example code and resources.Ariel2014-03-10-1/+38
|
* Fix capitalization in the word JavaScriptRenjith G R2014-01-22-3/+3
| | | There were two more other places where JavaScript was written as Javascript.
* Fixed capitalization in the word JavaScriptRenjith G R2014-01-22-1/+1
| | | Changed Javascript to JavaScript in the first paragraph.
* Fixed `) {` vs `){` inconsistencyAdam Brenecki2014-01-19-3/+3
|
* Added call, apply, bind JavaScript examplesJoel Birchler2013-12-26-0/+31
|
* typocubuspl422013-12-14-2/+2
|
* Note about how declaring functions affects scope.cubuspl422013-12-14-0/+2
|
* [javascript] Add notes about ASI. Closes #424.Adam Brenecki2013-11-26-2/+14
|
* [javascript/en] Enforce 80-char line widthAdam Brenecki2013-11-05-5/+5
|
* fixing one of my corrections, no idea why I delted the }; on line 333 ↵Steven Senatori2013-11-02-0/+1
| | | | previously...sorry
* Deleted some bad syntax and tweaked an explanationSteven Senatori2013-11-02-4/+4
| | | | for clarity
* [javascript] Added note about intsAdam Brenecki2013-10-10-0/+2
|
* [javascript] Add bit about array mutability.Adam Brenecki2013-10-10-0/+4
| | | | Closes #381.