0
0

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