Published
Edited
Aug 9, 2019
Insert cell
md`# Conditionally adding keys to JavaScript objects using spread operators and short-circuit evaluation`
Insert cell
// See https://medium.com/@mikeh91/conditionally-adding-keys-to-javascript-objects-using-spread-operators-and-short-circuit-evaluation-acf157488ede for more details
Insert cell
amplitude = 26
Insert cell
freq = "WEEKLY"
Insert cell
interval = 23
Insert cell
a =
({
...(amplitude && true) && { amplitude: amplitude }, //YEARLY, MONTHLY, WEEKLY, DAILY, HOURLY, MINUTELY, SECONDLY
...interval && { interval: interval }, //The interval between each freq iteration.
dfd: 3
})
Insert cell
b =
({
...(amplitude && true) && { amplitude: amplitude }, //YEARLY, MONTHLY, WEEKLY, DAILY, HOURLY, MINUTELY, SECONDLY
...interval && { interval: interval }, //The interval between each freq iteration.
dfd: 3,
...[0] && { name: [0] }, //The interval between each freq iteration.

})
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more