0
0

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.

TWICE ONCE JavaScript 1回だけ実行する関数【MISAMO】

Last updated at Posted at 2024-04-03
function once(fn, max = 1) {
    let i = 0
    return () => i++ < max && fn()
}

function twice(fn, max = 2) {
    let i = 0
    return () => i++ < max && fn()
}

execute_once = once(() => console.log('hi once'))
execute_once()
execute_once()

execute_twice = twice(() => console.log('hi twice'))
execute_twice()
execute_twice()
execute_twice()

image.png

function singleton(fn) {
    let result
    return () => result = result ?? fn()
}

execute_singleton = singleton(() => Math.random())
console.log(execute_singleton())
console.log(execute_singleton())
console.log(execute_singleton())

image.png

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?