Skip to content

Instantly share code, notes, and snippets.

@codingedgar
Created January 4, 2021 22:03
Show Gist options
  • Save codingedgar/8803cf55a93b52ac0d46aeb0181556a3 to your computer and use it in GitHub Desktop.
Save codingedgar/8803cf55a93b52ac0d46aeb0181556a3 to your computer and use it in GitHub Desktop.
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);
console.groupEnd();
/*
Console:
Logical OR assignment (||=)
50
title is empty.
*/
// Other usefull example can be:
document.getElementById('lyrics').textContent ||= 'No lyrics.'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment