Skip to content

Instantly share code, notes, and snippets.

View codingedgar's full-sized avatar
👨‍🔬

Edgar Rodriguez codingedgar

👨‍🔬
View GitHub Profile
console.group('Logical OR assignment (||=)');
const a = { duration: 50, title: '' };
a.duration ||= 10;
console.log(a.duration);
a.title ||= 'title is empty.';
console.log(a.title);