javascripting
Advanced tools
Comparing version 1.0.1 to 1.1.0
{ | ||
"name": "javascripting", | ||
"description": "Learn JavaScript by adventuring around in the terminal.", | ||
"version": "1.0.1", | ||
"version": "1.1.0", | ||
"repository": { | ||
@@ -6,0 +6,0 @@ "url": "git://github.com/sethvincent/javascripting.git" |
@@ -16,2 +16,6 @@ --- | ||
Check to see if your program is correct by running this command: | ||
`javascripting verify numbers.js` | ||
--- |
@@ -31,4 +31,6 @@ --- | ||
Create a variable named `food` like this: | ||
Create a file named `object-properties.js`. | ||
In that file, define a variable named `food` like this: | ||
```js | ||
@@ -35,0 +37,0 @@ var food = { |
@@ -28,4 +28,4 @@ --- | ||
`javascripting verify revising-strings.js` | ||
`javascripting verify rounding-numbers.js` | ||
--- |
@@ -16,3 +16,2 @@ var fs = require('fs'); | ||
run(args[0], function (err, result) { | ||
console.log(typeof result) | ||
if (result == 14) cb(true); | ||
@@ -19,0 +18,0 @@ else cb(false); |
@@ -22,3 +22,3 @@ --- | ||
Make the `example` variable reference the string `this is an example`. | ||
**Make the `example` variable reference the string `example string`.** | ||
@@ -29,4 +29,4 @@ Use `console.log` to print the **length** of the string to the terminal. | ||
`javascripting verify strings.js` | ||
`javascripting verify string-length.js` | ||
--- |
@@ -25,2 +25,4 @@ --- | ||
Use `console.log` to print the variable **someString** to the terminal. | ||
Check to see if your program is correct by running this command: | ||
@@ -27,0 +29,0 @@ |
@@ -23,3 +23,3 @@ --- | ||
For this challenge, create a file named `variables.js`. | ||
Create a file named `variables.js`. | ||
@@ -26,0 +26,0 @@ In that file create a variable named `example`. |
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
53361
397