TypeScript

環境
Windows 11 Pro 64bit
TypeScript 4.4.4

構文
const min = Math.min(…配列名)
配列の最小値を取得するには、 Mat ...

TypeScript

環境
Windows 11 Pro 64bit
TypeScript 4.4.4

構文
const max = Math.max(…配列名)
配列の最大値を取得するには、 Mat ...

TypeScript

環境
Windows 11 Pro 64bit
TypeScript 4.4.4

構文
文字列.length
文字列(string)の長さを取得するには、lengthプロパティを使います。 ...

TypeScript

環境
Windows 11 Pro 64bit
TypeScript 4.4.4

構文
const result: string = 文字列.replace(/\s+/g, ”)

TypeScript

環境
Windows 11 Pro 64bit
TypeScript 4.4.4

構文
const result: number = 変数名e ** N
「**」演算子は、左辺の数値をN乗( ...

TypeScript

環境
Windows 11 Pro 64bit
TypeScript 4.4.4

構文
オブジェクト変数名.hasOwnProperty(key)
メソッドを使ってObject(オブジェクト ...

TypeScript

環境
Windows 11 Pro 64bit
TypeScript 4.4.4

構文
配列変数名y.splice(0)
splice()の引数に「0」を指定します。
呼び出した配列 ...

TypeScript

環境
Windows 11 Pro 64bit
TypeScript 4.4.4

構文
const result: string = 文字列.substring(xx)
xx:引数の値 ...

TypeScript

環境
Windows 11 Pro 64bit
TypeScript 4.4.4

構文
const 変数: string = 文字列.charAt(0)
charAt()の引数に「0」を指定 ...

TypeScript

環境
Windows 11 Pro 64bit
TypeScript 4.4.4

構文
const unique = new Set(配列1.concat(配列2)); #配列1、配列2を結合する ...

TypeScript

環境
TypeScript 4.4.4

操作方法
1.macの場合、「Command」と「K」を同時に押します。

2.Windowsの場合、「Ctrl」と「K」を同時に押します

TypeScript

環境
Windows 11 Pro 64bit
TypeScript 4.4.4

構文
const ttSet = new Set(配列名);
配列(array)をSetに変換するには、Se ...

TypeScript

環境
Windows 11 Pro 64bit
TypeScript 4.4.4

構文
const pairs: , , , , ]

TypeScript

環境
Windows 11 Pro 64bit
TypeScript 4.4.4

構文
let result = .filter((key) => map.get(key) == value) ...

TypeScript

環境
Windows 11 Pro 64bit
TypeScript 4.4.4

構文
const pairs: , , , ]

TypeScript

環境
Windows 11 Pro 64bit
TypeScript 4.4.4

構文
const pairs:
entries()を呼び出したMapをkey-valueペアの配列に変換しま ...

TypeScript

環境
Windows 11 Pro 64bit
TypeScript 4.4.4

構文
配列名.splice(0)
splice()の引数に「0」を指定します。
呼び出した配列の要素 ...

TypeScript

環境
Windows 11 Pro 64bit
TypeScript 4.4.4

構文
const result: string = 文字列.substring(n)
呼び出した文字列(st ...