Dave Maison

303
reputation
1
10

There are two types of people in this world... Those who write like this:

let isItEqual = ( a, b ) => ( a === b );

And Those who write like this:

function ISiTEqUAL( a, b ){
    if( a == b ){ 
        return true;
    } else {
        return false;
    }
}