404
258

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 3 years have passed since last update.

一瞬でJavaScriptのfor文が爆速になった話

Last updated at Posted at 2020-02-06

AtCoder初心者のアクマちゃん(@akumachanit)デモ!for文を早くする方法を見かけたので試してみたデモ!

#三行で

  • i++
  • i=(i+1)|0に変えると
  • 爆速になったデモ

#実演

// これを
for (i = 0; i <= H; i++) {
  // 省略...
}

// こうしただけ
for (i = 0; i <= H; i=(i+1)|0) {
  // 省略...
}

爆速
えっ...
メモリも...

#なんで?
なんでも処理系に型を認識させることで速度が上がるらしいデモ。
詳しいことはこれから調べるからワガハイには聞かないでくれデモ...笑
環境によって差異とかあっても当悪魔は一切関知しないデモ!(こっそりコメントで教えてくれデモ)

#ここに書いてあったデモ
コメントで出典を乗せるべきと指摘いただきましたデモ!
その通りですデモ!ご指摘ありがとうございましたデモ!

こちらです!筆者さま失礼いたしましたデモ。
JavaScriptのループはどれが一番高速なのか

#仲良くして欲しいデモ
Twitterやってるデモ!仲良くしてくださいデモ!@akumachanit

404
258
10

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
404
258

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?