Skip to content

Instantly share code, notes, and snippets.

@oneroyalace
Created July 26, 2018 02:44
Show Gist options
  • Save oneroyalace/8395f523760e937f3444b1f258c1633b to your computer and use it in GitHub Desktop.
Save oneroyalace/8395f523760e937f3444b1f258c1633b to your computer and use it in GitHub Desktop.
Outputs the name of a random movie from an imdb watchlist (runs in console)
var movieList = Array(document.getElementsByClassName('lister-item-header'))[0];
var randomNum = Math.floor(Math.random()*movieList.length);
console.log(movieList[randomNum].childNodes[0].innerText);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment