UNPKG

ds-algo-study

Version:

Just experimenting with publishing a package

9 lines (8 loc) 199 B
const firstThing = li => { // n would be input size return li[ 0 ]; }; const threeHundredThousandTimesLog = name => { for ( let i = 0; i < 300000; i++ ) { console.log( name ); } };