Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of Dave Maison

Dave Maison

Dave Maison has asked 2 questions and find answers to 0 problems.

Stats

10
EtPoint
0
Vote count
2
questions
0
answers

About

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;
    }
}