Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Spread Syntax | Arrays
Introduction to TypeScript

Spread SyntaxSpread Syntax

Actually, array generation is a rather complex topic for a beginner course, and there are quite a few ways to generate arrays. But I think it's a good idea to at least explore one type of array generation, so you'll know that it exists and is quite commonly used.

Array generation is needed to automatically create a new array based on a condition or another array. For example, we can set a condition that we need an array of numbers from 1 to 100 or that we only need even numbers. There are many applications, and we will come back to this when working with loops.

Let's look at an example of how to generate a new array based on an existing one:

We used the following syntax:

The three dots mean that we are using the old array and adding new elements to it. The old array remains unchanged, and a new updated array is created based on it, with the new values we add.

This is one of the easiest ways to generate an array. In the future, when we will discuss loops and functions, we will talk more about various methods of array generation.

Everything was clear?

Section 3. Chapter 5
course content

Course Content

Introduction to TypeScript

Spread SyntaxSpread Syntax

Actually, array generation is a rather complex topic for a beginner course, and there are quite a few ways to generate arrays. But I think it's a good idea to at least explore one type of array generation, so you'll know that it exists and is quite commonly used.

Array generation is needed to automatically create a new array based on a condition or another array. For example, we can set a condition that we need an array of numbers from 1 to 100 or that we only need even numbers. There are many applications, and we will come back to this when working with loops.

Let's look at an example of how to generate a new array based on an existing one:

We used the following syntax:

The three dots mean that we are using the old array and adding new elements to it. The old array remains unchanged, and a new updated array is created based on it, with the new values we add.

This is one of the easiest ways to generate an array. In the future, when we will discuss loops and functions, we will talk more about various methods of array generation.

Everything was clear?

Section 3. Chapter 5
some-alt