1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【GAS】「TypeError: Assignment to constant variable」と出る

Last updated at Posted at 2023-02-14

はじめに

こんにちは、ユーゴです。
今回は、GASを使っていた時に遭遇したエラーについて紹介します。なぜか調べても出てこなかったので、書き記しておきます。
難易度は初級です。

問題

「TypeError: Assignment to constant variable」というエラーが出る

原因

constの変数を弄ろうとした。
例えば、以下のようなことをやると出る。

function test(){
    const i = 0;
    i++; //TypeError: Assignment to constant variable
}

解決

constじゃなくてletを使うか、constに値を再代入しない。

function test(){
    let i = 0;
    i++; // OK
}

まとめ

いかがだったでしょうか。今回は、初歩的なミスの紹介でした。
この他にも、APIの使い方などの記事なども書いております。

お役に立てましたら、いいね・LGTM・フォローの方、よろしくお願いいたします!

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?