DEV Community

Adam Crockett πŸŒ€
Adam Crockett πŸŒ€

Posted on

Optional chaining function call

let foo;
foo.?() // undefined
foo = () => 2
foo.?() // 2
Enter fullscreen mode Exit fullscreen mode

So that's a thing ☺️

Top comments (0)