Skip to content

Commit

Permalink
Merge pull request #30 from in-tech-gration/main
Browse files Browse the repository at this point in the history
Removed broken link
  • Loading branch information
colevandersWands authored Nov 17, 2023
2 parents ffcd118 + 5b937dc commit c2bd7ec
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
5 changes: 1 addition & 4 deletions 1-what-is-programming/0-javascript/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,7 @@ in a browser, each one has a specific use case:
[code.org](https://code.org/) (develop and play games with JS),
[editor.p5js.org](https://editor.p5js.org/) (create interactive artwork),
[PencilCode](https://pencilcode.net/edit/myprogram) (write your code as blocks
or text), [Ocelot](https://code.ocelot-ide.org/) (disallows "bad" language
features and has helpful error messages).
or text).

---

Expand All @@ -135,11 +134,9 @@ secure and developer-friendly alternative to Node.js.

- [javascript.info/intro](https://javascript.info/intro)
- [The Net Ninja](https://www.youtube.com/watch?v=VB7y0yxZjro)
- [MDN](https://developer.mozilla.org/en-US/docs/Learn/JavaScript/First_steps/What_is_JavaScript)
- [Andrew Mosh](https://www.youtube.com/watch?v=W6NZfCO5SIk) \(first 5 minutes\)
- [Code School](https://www.youtube.com/watch?v=nItSSTwBvSU)
- [MDN: First Steps](https://developer.mozilla.org/en-US/docs/Learn/JavaScript/First_steps/What_is_JavaScript)
- [javascript.info](https://javascript.info/intro)
- [Danielle Thé](https://www.youtube.com/watch?v=gT0Lh1eYk78)

---
Expand Down
1 change: 0 additions & 1 deletion 1-what-is-programming/0-javascript/some-history.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ grow, but this is the case for JavaScript.

- [You Don't Know JS](https://github.com/getify/You-Dont-Know-JS/blob/2nd-ed/get-started/ch1.md#backwards--forwards)
- [Why is JavaScript backwards compatible to a fault?](https://stackoverflow.com/questions/4937245/why-is-javascript-backwards-compatible-to-a-fault)
- [edytawrobel](https://www.edytawrobel.com/js-compatibility/)
- [tonsky.me](https://tonsky.me/blog/compatibility/)
- [rohitdhatrak](https://www.rohitdhatrak.com/backwards-forwards-compatibility/)
- [Chrome Breaks the Web](https://www.theregister.com/2021/10/04/chrome_breaks_web/)
Expand Down
2 changes: 2 additions & 0 deletions 2-just-enough-javascript/02-primitive-values/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ console.log(null);
'use strict';
console.log('--- numbers: numbers that are not wrapped in quotation marks ---');
console.log(12);
console.log(3.14);
console.log(0);
console.log(-12);
console.log(10_000_000_000);
```

0 comments on commit c2bd7ec

Please sign in to comment.