Introduction to time and date It's probably not a surprise that you can work with dates and times in javascript. There's an object built in for that which is used all the time in all sorts of projects. Often to be able to set a date for when something has happened or will happen. For..
Tag Archives: Learn javascript
What if and else is The statements if and else in javascript means exactly what they sound like, if something is true do this, or else do something else. Both these statements are used very often in the language in order to control programs data flow. Often when coding you want to be able to..
What a variable is Now we're going to talk about one of the most important and fundamental concepts in javascript (and also in other programming languages). Variables. A variable can be thought of as a placeholder for a value. Like a shopping bag that contains perhaps an apple or a banana. You use the bag..
Welcome to the first course in learning javascript! You've made a good choice coming here since javascript is one of the most popular programming languages in the world today. It's used everywhere and not only on websites, but also in windows 10 and in mobile apps. For every web developer today it's a language one..