Skip to content

Instantly share code, notes, and snippets.

View harddy's full-sized avatar

Hardik Thakkar harddy

  • Anand, Gujarat, India
View GitHub Profile
@harddy
harddy / jshipster_and_and.js
Created July 29, 2018 15:30 — forked from berzniz/jshipster_and_and.js
Some small javascript hacks for hipsters
// Boring
if (isThisAwesome) {
alert('yes'); // it's not
}
// Awesome
isThisAwesome && alert('yes');
// Also cool for guarding your code
var aCoolFunction = undefined;