• Post category:StudyBullet-4
  • Reading time:6 mins read


Learn the fundamentals of JavaScript: A perfect kickstart for absolute beginners

What you will learn

Learn the fundamentals of the JavaScript programming language

Understand programming from scratch

Work with the primitive data types

Variables in JavaScript

Understand how to work with loops

How to use comments

Using the JavaScript console

Operators in JavaScript

Learn to use arrays

Learn to use objects

Working with functions

Learn how to use methods

Learn about conditional statements

Description

Are you looking for a way to learn to code but you aren’t sure how or where to start? Maybe you have started learning but feel overwhelmed by the amount of content out there? This course will teach you all the fundamentals of the JavaScript programming language that a beginner should know and it will do so through short but concise examples.

JavaScript is a great language to learn, It is a fun language but also extremely in demand. By taking this course you will kick start your learning process and be on the path to becoming the developer you want to be.

In this course you will be introduced to the very basics of the JavaScript language and the primitive data types, We will then look at Objects, Arrays and functions. You will also be introduced to conditionals and logic. After taking this course you will have a good foundation of all the necessary topics so that you can go off on your own and start to create your own programs.


Get Instant Notification of New Courses on our Telegram channel.


Whether you are new to programming, New to JavaScript or you just want to build upon some existing knowledge this course will help provide you with a toolbox to becoming a better developer.

English
language

Content

The world of JavaScript

Primitive types
Numbers introduction
Numbers example
Arithmetic operators
Booleans
Comments
Null and undefined
Introduction to variables
Variables with const
Updating variables
Introduction to strings
String indices
String interpolation
String concatenation
Strings immutability
Methods in JavaScript
String toUpperCase method
String toLowerCase method
String indexOf
String length
String replace method
String trim method
Introduction to arrays
Array indices
Updating arrays
Array indexOf method
Array push and pop methods
Array includes method
Array shift and unshift methods
Objects introduction
Running code from a text editor
Creating objects
Adding and updating object properties
Accessing object properties
Conditionals introduction
Comparison operators introduction
Comparison operators example
Additional comparison operators
Conditional statements introduction
If statements
Else statements
Else if statements
Logical operators introduction
Logical AND
Logical OR
Logical NOT
Loops introduction
For loops
While loops
Do while loops
Functions