javascripting
Advanced tools
Comparing version 1.10.1 to 1.10.2
@@ -18,6 +18,4 @@ require("colors"); | ||
if(err) { | ||
if(err.code !== 8) { | ||
console.error(err); | ||
} | ||
if(err && err.code !== 8) { | ||
console.error(err); | ||
return cb(false); | ||
@@ -32,3 +30,3 @@ } | ||
solution: solutionResult, | ||
attempt: attemptResult, | ||
attempt: err || attemptResult, | ||
diff: generateDiff(solutionResult, attemptResult) | ||
@@ -63,2 +61,2 @@ }); | ||
} | ||
} |
{ | ||
"name": "javascripting", | ||
"description": "Learn JavaScript by adventuring around in the terminal.", | ||
"version": "1.10.1", | ||
"version": "1.10.2", | ||
"repository": { | ||
@@ -6,0 +6,0 @@ "url": "git://github.com/sethvincent/javascripting.git" |
@@ -29,5 +29,5 @@ --- | ||
Create a for loop in 10 iterations. On each loop, add the number `i` to the `total` variable. | ||
Create a for loop with a variable `i` starting at 0 and increasing by 1 each time through the loop. The loop should run as long as `i` is less than `limit`. | ||
You can use a statement like this one: | ||
On each iteration of the loop, add the number `i` to the `total` variable. To do this, you can use this statement: | ||
@@ -34,0 +34,0 @@ ```js |
# JAVASCRIPTING | ||
[![Gitter](https://badges.gitter.im/Join Chat.svg)](https://gitter.im/sethvincent/javascripting?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) | ||
> Learn JavaScript by adventuring around in the terminal. | ||
> _Looking for more interactive tutorials like this? Go to [nodeschool.io](http://nodeschool.io)._ | ||
## Get help | ||
Having issues with javascripting? Get help troubleshooting in the [nodeschool discussions repo](http://github.com/nodeschool/discussions), or on gitter: | ||
[![Gitter](https://badges.gitter.im/Join Chat.svg)](https://gitter.im/nodeschool/discussions?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) | ||
## Install Node.js | ||
@@ -10,0 +13,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
899706
73
786