Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

javascripting

Package Overview
Dependencies
Maintainers
1
Versions
42
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

javascripting - npm Package Compare versions

Comparing version 1.10.1 to 1.10.2

10

compare-solution.js

@@ -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 @@ });

}
}

2

package.json
{
"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 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc