Как сделать что -то один раз в JavaScript

const do_once = "true"
if do_once == "true":
    console.log("blah")
    do_once = "false"
IEATCODE