๐ฆStack
๐ง under construction
Last updated
Was this helpful?
๐ง under construction
Last updated
Was this helpful?
Was this helpful?
data structure โฉ Stack
replit โฉ WaitingList (js)
// โญ Stack
// 2022.12.28 - ??:?? - first version
// ----------------------------
// ๐น .push(a, b, c ...)
// ๐น .pop()
// ๐น .enqueue(a, b, c ...) // speaks in Queue's language
// ๐น .dequeue() // (same)
// ๐ธ .first
// ๐ธ .length
// ๐ธ .isEmpty
// ----------------------------
// ๐น .toString()
// ๐น .log()