You are on page 1of 2

———————————

let anObject = {left: 1, right: 2};
console.log(anObject.left);
// → 1
delete anObject.left;
console.log(anObject.left);
// → undefined
———————————

let objectA = {a: 1, b: 2};
Object.assign(objectA, {b: 3, c: 4});
console.log(objectA);
// → {a: 1, b: 3, c: 4}
———————————

for (let entry of JOURNAL) {
  console.log(`${entry.events.length} events.`);
}

———————————
let todoList = [];
function remember(task) {
  todoList.push(task);
}
function getTask() {
  return todoList.shift();
}
function rememberUrgently(task) {
  todoList.unshift(task);
}
That program manages a queue of tasks. You add tasks to the end of the
queue by calling remember("groceries"), and when you’re ready to do
something, you call getTask() to get (and remove) the front item from
the queue. The rememberUrgently function also adds a task but adds it to
the front instead of the back of the queue.

———————————

function remove(array, index) {
  return array.slice(0, index)
    .concat(array.slice(index + 1));
}

———————————
function repeat(n, action) {
  for (let i = 0; i < n; i++) {
    action(i);
  }
}

repeat(3, console.log);
// → 0
// → 1
// → 2
———————————
let labels = [];
repeat(5, i => {
labels.push(`Unit ${i + 1}`);
});
console.log(labels);
// → ["Unit 1", "Unit 2", "Unit 3", "Unit 4", "Unit 5"]

———————————

You might also like