Skip to content

Instantly share code, notes, and snippets.

@jpgninja
Last active March 15, 2017 19:47
Show Gist options
  • Save jpgninja/63d36a020f43210d02f107cbf39468f7 to your computer and use it in GitHub Desktop.
Save jpgninja/63d36a020f43210d02f107cbf39468f7 to your computer and use it in GitHub Desktop.
PERT Estimation bookmarklet
javascript:(function(){let best=parseInt(prompt("Your best case scenario : ", "1000"), 10),amt=(((best*8)+(best)+(best*6))/6);alert('Total estimate: '+amt);})();
/* Here it is laid out: */
(function(){
let best=parseInt(prompt("Your best case scenario : ", "1000"), 10),
amt=(((best*8)+(best)+(best*6))/6);
alert('Total estimate: ' + amt);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment