Fundamentals of JavaScript [GK840201]

Total time
Location
At location, Online
Starting date and place

Fundamentals of JavaScript [GK840201]

Global Knowledge Network Training Ltd.
Logo Global Knowledge Network Training Ltd.
Provider rating: starstarstarstarstar_border 7.7 Global Knowledge Network Training Ltd. has an average rating of 7.7 (out of 3 reviews)

Need more information? Get more details on the site of the provider.

Starting dates and places
computer Online: VIRTUAL TRAINING CENTER
4 Feb 2026 until 6 Feb 2026
place(Virtual Training Centre)
11 Feb 2026 until 13 Feb 2026
computer Online: VIRTUAL TRAINING CENTER
4 Mar 2026 until 6 Mar 2026
place(Virtual Training Centre)
4 Mar 2026 until 6 Mar 2026
computer Online: VIRTUAL TRAINING CENTER
7 Apr 2026 until 9 Apr 2026
place(Virtual Training Centre)
15 Apr 2026 until 17 Apr 2026
computer Online: VIRTUAL TRAINING CENTER
6 May 2026 until 8 May 2026
place(Virtual Training Centre)
6 May 2026 until 8 May 2026
computer Online: VIRTUAL TRAINING CENTER
3 Jun 2026 until 5 Jun 2026
place(Virtual Training Centre)
10 Jun 2026 until 12 Jun 2026
computer Online: VIRTUAL TRAINING CENTER
8 Jul 2026 until 10 Jul 2026
place(Virtual Training Centre)
8 Jul 2026 until 10 Jul 2026
computer Online: VIRTUAL TRAINING CENTER
5 Aug 2026 until 7 Aug 2026
place(Virtual Training Centre)
12 Aug 2026 until 14 Aug 2026
computer Online: VIRTUAL TRAINING CENTER
9 Sep 2026 until 11 Sep 2026
place(Virtual Training Centre)
9 Sep 2026 until 11 Sep 2026
computer Online: VIRTUAL TRAINING CENTER
7 Oct 2026 until 9 Oct 2026
place(Virtual Training Centre)
14 Oct 2026 until 16 Oct 2026
computer Online: VIRTUAL TRAINING CENTER
4 Nov 2026 until 6 Nov 2026
place(Virtual Training Centre)
4 Nov 2026 until 6 Nov 2026
Description

OVERVIEW

Begin your journey in programming by learning coding skills with JavaScript

Fundamentals of JavaScript will equip you with the essential programming skills necessary to excel in the dynamic field of web development. Throughout this course, you will gain proficiencies in using industry-standard tools such as Visual Studio Code to run JavaScript files locally, ensuring you have a strong foundation in practical programming. By the end of this course, you will have a solid understanding of JavaScript programming fundamentals, empowering you to build dynamic and interactive web applications.

OBJECTIVES

  • Utilize tools used in programming such as VS Code and run JavaScript files locally.
  • U…

Read the complete description

Frequently asked questions

There are no frequently asked questions yet. If you have any more questions or need help, contact our customer service.

OVERVIEW

Begin your journey in programming by learning coding skills with JavaScript

Fundamentals of JavaScript will equip you with the essential programming skills necessary to excel in the dynamic field of web development. Throughout this course, you will gain proficiencies in using industry-standard tools such as Visual Studio Code to run JavaScript files locally, ensuring you have a strong foundation in practical programming. By the end of this course, you will have a solid understanding of JavaScript programming fundamentals, empowering you to build dynamic and interactive web applications.

OBJECTIVES

  • Utilize tools used in programming such as VS Code and run JavaScript files locally.
  • Understand the basic concepts of programming and JavaScript's role in web development.
  • Create variables that store different data types and manipulate the values using operators in JavaScript.
  • Use JavaScript built-in libraries, like `console`, to work with primitive data types.
  • Implement control flow using `if`, `else if`, `else`, `switch`, and ternary syntax in JavaScript.
  • Create functions using all of JavaScript's different syntax that use parameters — and call them with arguments to return values.
  • Interpret common JavaScript errors and interpret error messages.
  • Purposefully define values and objects in a scope that is accessible to the objects that require said values and other objects in JavaScript.
  • Store, access, and manipulate elements in an array in JavaScript.
  • Use loops that have defined starting, stopping, and continuing conditions to iterate over elements in a collection in JavaScript.

AUDIENCE

This is considered a foundational course. Best for individuals who are new to programming and starting their full-stack career.

CONTENT

Introduction to JavaScript
  • Exploring what programming is
  • Exploring JavaScript usage
  • Demo: Setting up a local environment
  • Preparing to write a JavaScript file (.js)
  • Reviewing statement construction in JavaScript
  • Reviewing basic syntax rules
  • Printing to console with a basic statement
  • Running a JavaScript file in VS Code
Basics of JavaScript Programming
  • Exploring data types and their real life counterparts
  • Exploring primitive data types in JavaScript
  • Working with JavaScript strings
  • Adding special string characters (\n, \\, ', ")
  • Exploring built-in string methods
  • Combining strings with string concatenation
  • Working with numbers
  • Using arithmetic operators
  • Working with booleans
  • Data type properties and the dot notation
  • Tracking data types with typeof operator
JavaScript VariablesCreating Variables
  • Exploring the function and purpose of storing data
  • Observing JavaScript variable syntax
  • Creating a variable with var
  • Creating a variable with let and const
  • Variable naming best practice
  • Mentally mapping variables storage in memory
Manipulating Variables
  • Updating variable value
  • Combining variables and arithmetic operations
  • Using the increment and decrement operator
  • Working with variable string concatenation
  • String interpolating with variables
  • Data type coercing with variables
JavaScript Conditional Branching
  • Exploring the function and purpose of conditions in a program
Basic Control Flow
  • Creating an if-statement
  • Using comparison operators
  • Understanding == and ===
  • Using logical operators
  • Using Truthy and Falsy
  • Adding the else-clause
  • Chaining with else-if
  • Nesting if-statements
  • Condensing with ternary operator
Switch Case
  • Creating a switch case
  • Controlling switch case execution behavior with fall-through and break
  • Managing data typing in a switch case
  • Defining a default cas
JavaScript Functions
  • Exploring the function and purpose of reusing blocks of code
  • Function syntax construction
  • Defining a function
  • Calling a function
  • Adding parameters into a function declaration
  • Calling a function with arguments
  • Adding default parameters
  • Returning values
  • Exploring function declaration hoisting
  • Using functions inside other functions
  • Considerations for defining functions and naming functions
Debugging
  • Exploring basic JavaScript errors (syntax errors, runtime errors, logical errors)
  • Reading and interpreting error messages
  • Using basic debugging technique with console.log
  • Common beginnner mistakes
JavaScript Scope
  • Exploring the concept of "scoping" in a program
  • Understanding "global" scope
  • Understanding "block" scope
  • Understanding "local" scope
  • Exploring differences between "block" scope and "local" scope
  • Exploring scope pollution
  • Scoping best practice
JavaScript ArraysArray Creation
  • Exploring the purpose of organizing data
  • Creating an array with singular data types using an array literal
  • Creating an array with mixed data types using an array literal
  • Creating multi-dimensional arrays
Array Manipulation
  • Accessing elements
  • Using element index
  • Updating elements in place
  • Exploring mutability of an array declared with const
  • Exploring array built-in methods
  • Accessing array length with .length
  • Resetting an array with .length
  • Using push()
  • Using pop()
  • Using sort()
Array Usage Pattern
  • Exploring passing arrays to functions
  • Exploring manipulating arrays inside of functions
  • Trying array equality
  • Analyzing references vs value in memory
JavaScript Loops
  • Understanding repetition in a program
  • Constructing loops semantically
  • Using the while loop
  • Using the do while loop
  • Using the for loop
  • Looping in reverse
  • Looping through arrays
  • Constructing nested loops
  • Using the break keyword
JavaScript Objects
  • Exploring object data type
  • Exploring the purpose and function of objects
  • Exploring organizing data into objects
  • Creating an object with object literals
  • Accessing object properties
  • Accessing with bracket notation
  • Mutating objects with property reassignment
  • Creating an object with methods
  • Trying object equality
  • Analyzing object references in memory
  • Creating nested objects
  • Accessing nested properties by chaining
  • Using for..in to loop through objects
  • Choosing between arrays and objects
There are no reviews yet.
Share your review
Do you have experience with this course? Submit your review and help other people make the right choice. As a thank you for your effort we will donate £1.- to Stichting Edukans.

There are no frequently asked questions yet. If you have any more questions or need help, contact our customer service.