UNPKG

superheroesss-vik

Version:

This library shall provide a list of superherores or a random superhero

9 lines (5 loc) 180 B
import superheroes from './superheroes.js'; const all = superheroes; const random = all[Math.floor(Math.random() * all.length)]; console.log(all); export {all, random};