Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
学ぶ Spread Syntax | Section
TypeScript Fundamentals

bookSpread 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:

123
let numbers: number[] = [1, 2, 3, 4, 5]; let newArray = [...numbers, 6, 7, 8]; console.log(newArray);
copy

We used the following syntax:

let newArray: type[] = [...array, additionalElements]

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.

question mark

What is the effect of using the spread operator (...) when generating a new array in TypeScript?

正しい答えを選んでください

すべて明確でしたか?

どのように改善できますか?

フィードバックありがとうございます!

セクション 1.  19

AIに質問する

expand

AIに質問する

ChatGPT

何でも質問するか、提案された質問の1つを試してチャットを始めてください

セクション 1.  19
some-alt