Tuesday 14 June 2016

Handy tool to use when one want to generate insert into statements from the excel data may be helpful to create seedData sql. http://tools.perceptus.ca/text-wiz.php?ops=7

Thursday 14 January 2016

JavaScript is Strange!

console.log(1 == true); //true
console.log(1 === true); //false
console.log("0" == false); //true
console.log("abc" == "a" + "b" +"c"); //true
console.log(null == undefined); //true
console.log(30 -"7"); //23
console.log("30" + 7); //307