Last active
March 15, 2017 19:47
-
-
Save jpgninja/63d36a020f43210d02f107cbf39468f7 to your computer and use it in GitHub Desktop.
PERT Estimation bookmarklet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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