() => {
foo: 'bar'
}
Fun fact, in that code foo:
is interpreted as a labeled statement. As also explained in the MDN link.
() => {
foo: 'bar'
}
Fun fact, in that code foo:
is interpreted as a labeled statement. As also explained in the MDN link.