├── .gitignore ├── README.md ├── book ├── 1 - Getting Started.md ├── 2 - Numbers, Variables, & Strings.md ├── TOC.md └── images │ ├── 1-30-days-dev-folder.png │ ├── 1-chrome-js-console.png │ ├── 1-hello-world.png │ ├── 1-ls-terminal.png │ ├── 1-my-node-version.png │ ├── 1-npm-init.png │ ├── 1-select-nodejs-lts-version.png │ ├── 1-terminal-default-screenshot.png │ ├── 1-vscode-explorer.png │ ├── 1-vscode-terminal.png │ ├── 1-vscode.png │ └── 2-final-files.png └── code ├── Day 1 ├── hello.js └── package.json └── Day 2 ├── package.json ├── someMath.js ├── someStrings.js └── someVars.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/30-Days-of-JavaScript/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/30-Days-of-JavaScript/HEAD/README.md -------------------------------------------------------------------------------- /book/1 - Getting Started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/30-Days-of-JavaScript/HEAD/book/1 - Getting Started.md -------------------------------------------------------------------------------- /book/2 - Numbers, Variables, & Strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/30-Days-of-JavaScript/HEAD/book/2 - Numbers, Variables, & Strings.md -------------------------------------------------------------------------------- /book/TOC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/30-Days-of-JavaScript/HEAD/book/TOC.md -------------------------------------------------------------------------------- /book/images/1-30-days-dev-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/30-Days-of-JavaScript/HEAD/book/images/1-30-days-dev-folder.png -------------------------------------------------------------------------------- /book/images/1-chrome-js-console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/30-Days-of-JavaScript/HEAD/book/images/1-chrome-js-console.png -------------------------------------------------------------------------------- /book/images/1-hello-world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/30-Days-of-JavaScript/HEAD/book/images/1-hello-world.png -------------------------------------------------------------------------------- /book/images/1-ls-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/30-Days-of-JavaScript/HEAD/book/images/1-ls-terminal.png -------------------------------------------------------------------------------- /book/images/1-my-node-version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/30-Days-of-JavaScript/HEAD/book/images/1-my-node-version.png -------------------------------------------------------------------------------- /book/images/1-npm-init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/30-Days-of-JavaScript/HEAD/book/images/1-npm-init.png -------------------------------------------------------------------------------- /book/images/1-select-nodejs-lts-version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/30-Days-of-JavaScript/HEAD/book/images/1-select-nodejs-lts-version.png -------------------------------------------------------------------------------- /book/images/1-terminal-default-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/30-Days-of-JavaScript/HEAD/book/images/1-terminal-default-screenshot.png -------------------------------------------------------------------------------- /book/images/1-vscode-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/30-Days-of-JavaScript/HEAD/book/images/1-vscode-explorer.png -------------------------------------------------------------------------------- /book/images/1-vscode-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/30-Days-of-JavaScript/HEAD/book/images/1-vscode-terminal.png -------------------------------------------------------------------------------- /book/images/1-vscode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/30-Days-of-JavaScript/HEAD/book/images/1-vscode.png -------------------------------------------------------------------------------- /book/images/2-final-files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/30-Days-of-JavaScript/HEAD/book/images/2-final-files.png -------------------------------------------------------------------------------- /code/Day 1/hello.js: -------------------------------------------------------------------------------- 1 | console.log("hello world") 2 | -------------------------------------------------------------------------------- /code/Day 1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/30-Days-of-JavaScript/HEAD/code/Day 1/package.json -------------------------------------------------------------------------------- /code/Day 2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/30-Days-of-JavaScript/HEAD/code/Day 2/package.json -------------------------------------------------------------------------------- /code/Day 2/someMath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/30-Days-of-JavaScript/HEAD/code/Day 2/someMath.js -------------------------------------------------------------------------------- /code/Day 2/someStrings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/30-Days-of-JavaScript/HEAD/code/Day 2/someStrings.js -------------------------------------------------------------------------------- /code/Day 2/someVars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/30-Days-of-JavaScript/HEAD/code/Day 2/someVars.js --------------------------------------------------------------------------------