diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2023-01-30 21:46:49 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2023-01-30 21:46:49 +0530 |
commit | 49b442d9ea3516ac216746c8d8777746459abc37 (patch) | |
tree | 72b12c2693dedf2b3f809a9deb37b04e43990bba /content/docs/programming-resources/programming-and-scripting-languages/javascript | |
parent | 98147e66232619a4655856467b55ac9c808eb0ca (diff) |
added resources by language
Diffstat (limited to 'content/docs/programming-resources/programming-and-scripting-languages/javascript')
-rw-r--r-- | content/docs/programming-resources/programming-and-scripting-languages/javascript/_index.md | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/content/docs/programming-resources/programming-and-scripting-languages/javascript/_index.md b/content/docs/programming-resources/programming-and-scripting-languages/javascript/_index.md new file mode 100644 index 0000000..fbab04c --- /dev/null +++ b/content/docs/programming-resources/programming-and-scripting-languages/javascript/_index.md @@ -0,0 +1,23 @@ +--- +title: JavaScript +description: The scripting language of the web +weight: 3 +--- + +JavaScript is a scripting language primarily used in web development. It runs inside a web browser and is used to add logic to a website. +There is also [Node.js](https://nodejs.org) which is a runtime environment that lets you run JavaScript on the backend. + +## Basics + +To learn the basics of JavaScript + +- JavaScript in one video - [Video by Tech With Tim](https://www.youtube.com/watch?v=aPvHcc0ysm0) +- Node.js basics - [Playlist by Web Dev Simplified](https://www.youtube.com/watch?v=VShtPwEkDD0&list=PLZlA0Gpn_vH_uZs4vJMIhcinABSTUH2bY) + +## Additional Resources + +Some cool libraries, etc to check out + +- [JavaScript Frameworks](/docs/programming-resources/web-development/frontend/js-frameworks/) +- [Axios HTTP Client](https://axios-http.com/docs/intro): HTTP client for JS +- [currency.js](https://currency.js.org/): Handle currency values with JS |