const f1 = function() {
"test". // not work. suggestions are only "cast", "castas", and "not".
}
function f2() {
"test". // work.
}
const f3 = () => {
"test". // not work. suggestions are only "cast", "castas", and "not".
}
() => {
"test". // work.
}