Javascript Resources
An introduction to Javascript programming, client-side and server-side scripts, coding projects, resources for parents and more. Javascript is the foundation of modern websites and applications.
How to scramble a word in Javascript
Jul 5 2022
Want to randomly permute the order of characters in a Javascript string? Learn how!
Read moreCan a Javascript function return multiple values?
Jul 5 2022
Dive deeper into Javascript functions and see whether a function can return multiple values.
Read moreJavascript’s Array reduce() method
Jul 4 2022
Learn about the reduce() method in Javascript that computes functions over an entire array and returns accumulated results.
Read moreHow to loop through two arrays in Javascript
Jul 4 2022
Learn how to do the Python equivalent of the zip function in Javascript!
Read moreThe valueOf method in Javascript
Jun 6 2022
The valueOf method in Javascript returns the primitive value of an object without changing its original value.
Read moreJavaScript’s Math.floor() Method
Jun 6 2022
Learn Javascript’s Math.floor() method using simple examples!
Read moreJavascript's Array shift() method
Jun 3 2022
Javascript’s shift() method offers a convenient way to remove the first element of an array. Learn how to use it!
Read moreJavascript’s Math.max() function
Jun 3 2022
Learn about the very useful Math.max() function in Javascript!
Read moreHow to check if a number is between two numbers in JavaScript
May 31 2022
Writing a Javascript program and trying to check if a number is in between two values? Learn how to do so!
Read moreComputing powers in Javascript
May 31 2022