JavaScript Basics
Beginner friendly JavaScript exercises
learn JavaScript from scratch
core concepts
- 0/15variablesThe basics of declaring and assigning values to variables
- 0/5booleansLearn how to make your code think with true/false logic — the first step toward real programming.
- 0/19operatorsLearn how to calculate with JavaScript values or how to compare them using operators
- 0/27stringsThese exercises will teach you how to declare and manipulate string variables and how to combine multiple strings into one
- 0/16conditionalsThese JavaScript exercises will teach you how to use conditionals, such as if and else. They help you control the flow of your programs and make decisions based on the data they receive.
- 0/23functions IThis series of JavaScript exercises provides an introduction to the fundamental concepts and syntax of functions. You will learn how to define, call, and pass arguments to functions
- 0/17arraysThe basics of working with arrays in JavaScript, including creating, accessing, and modifying arrays and their elements.
- 0/15objectsThe basics of working with objects in JavaScript. You will learn how to access object properties, how to create and modify objects.
- 0/9loopsThis series of JavaScript exercises covers the basics of using loops in JavaScript, including for and while loops, as well as how to control the flow of a loop with break and continue statements