Skip to content

Instantly share code, notes, and snippets.

View mviktordev's full-sized avatar

Віктор Мачальський mviktordev

View GitHub Profile
const symbols = [];
function quantify(data) {
for(const change of data) {
if (symbols.indexOf(change.symbol) < 0) {
symbols.push(change.symbol)
symbols.sort()
// console.log(change.symbol, symbols.join('\n'))
}
}