Published
Edited
Dec 28, 2020
1 fork
Insert cell
Insert cell
Queue = function Queue(...initialValues) {
const list = [];
if (initialValues) {
// todo is this going to rerun ever
list.push(...initialValues);
}

this.peek = function peek() {
return list.length ? list[0] : null;
}

this.push = function push(value) {
if (Array.isArray(value)) list.push(...value);
else list.push(...value);
return list.peek();
}

this.pop = function pop() {
if (list.length) return list.pop();
else return null
}

this.find = function find(value) {
const index = list.indexOf(value);
if (index === -1) return null
return index;
}
this.print = function print(logger=console.log) {
const output = `Queue() <[${list.toString()}]>`;
logger(output);
return output;
}
}
Insert cell
x = new Queue(1, 2, 3);
Insert cell
x.print();
Insert cell
x.find(3);
Insert cell
x.peek();
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