0
0

【JavaScript】localStorageの容量が不足した際に処理を実行する方法

Last updated at Posted at 2024-02-10

以下のように記述することでlocalStorageの容量が不足した場合の処理を記述できます。

    try {
      localStorage.setItem('sample', 'sample')
    } catch (err) {
      if (err instanceof DOMException && err.name === 'QuotaExceededError') {
        console.log("localStorageの容量が不足しています。")
      }
    }
0
0
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
0
0