arrow functions - mmedrano9438/peripheral-brain GitHub Wiki

They make our code more structured and readable, they're anonymous functions i.e. functions without a name but they are often assigned to any variable.

Arrow Function with Parameters: `const gfg = ( x, y, z ) => { console.log( x + y + z ) }

gfg( 10, 20, 30 ); //60`