TypeScript slice()で文字列の先頭の文字を削除するサンプル

環境
Windows 11 Pro 64bit
TypeScript 4.4.4

構文
文字列からslice()を呼び出します。
slice()の引数に「1」を指定します。
const 変数名2: string = 変数名1.slice(1)
上記のslice()は、呼び出した文字列(string)の最初の文字を削除した文字列を返します。

使用例

const text: string = "ABCDDUN"
const result: string = text.slice(1)
console.log(result)

出力結果:
“BCDDUN"

IT

Posted by arkgame