Learn Javascript UK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2020 04:37 PM
Hi everyone,
I am a bit of an amateur with javascript, I can read it and write a little.
Does anyone know of any good courses to go on which can help me expand on my knowledge?
- Labels:
-
Scripting and Coding

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-23-2021 01:34 PM
Hi Andrew,
In addition to what others have suggested,
1/To understand JavaScript really well, you can go through this website called FreeCodeCamp.
2/Also, to understand ServiceNow APIs well, you can go through this Mark Miller's course.
https://www.udemy.com/course/servicenow-201-development/
Thanks and Regards,
Soumyadeep Chatterjee.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2022 07:02 AM
Hi
Hope you are doing good and your journey with learning still continues. As you continue scripting, this tool should help you walk through your code with simplicity, saving time.
Kindly mark my reply as Correct/Helpful, based on the response.
Cheers,
Anish Reghu

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2022 07:27 AM
1. Look at W3Schools or FreeCodeCamp.org for an introduction to JavaScript. They have decent tutorials with examples that help understand each lesson.
2. Start building stuff... anything, just start working with it while you continue to learn. The language is still evolving after 20+ years, I'm still learning JavaScript!
3. Read Douglas Crockford's book JavaScript: The Good Parts [https://www.goodreads.com/book/show/2998152-javascript] and Kyle Simpsons books You Don't Know JavaScript [https://github.com/getify/You-Dont-Know-JS].
- The two authors have slightly different perspectives on some of the quirks of the language and both perspectives have merit.
4. Keep going!
Regardless of the tools you use, try to learn JavaScript for what it is... it's own language. A lot of developers come from other languages, especially C-style languages like C/C++ or Java and think they recognize the language. There are a LOT of differences and learning them will help you avoid wasting a lot of time troubleshooting simple errors.
Also note that ServiceNow uses a server-side tool called Rhino to host the JavaScript environment. The version of Rhino in use is limited to ES5; however, most of the tutorials and online content will be teaching the latest version and capabilities. Watch out for unexpected issues that are not about misunderstanding JavaScript, but about using a feature that is not yet available on the server. The Mozilla Developer site [https://developer.mozilla.org/en-US/docs/Web/JavaScript] can help you understand when each feature became available. They also have some tutorials for different levels.
Good luck and welcome to the JavaScript world!