Created
July 25, 2019 20:52
-
-
Save brittanmcg/3a16ac3dbd9e0b92e552493b8c4707f0 to your computer and use it in GitHub Desktop.
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
| var startDateObject = new Date(); | |
| var startTime = startDateObject.getTime(); | |
| window.onbeforeunload = function (event) { | |
| var endDateObject = new Date(); | |
| var endTime = endDateObject.getTime(); | |
| var timeSpent = endTime - startTime; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment