Files
30-seconds-of-code/snippets/current-URL.md
2017-12-12 07:11:37 -05:00

121 B

Current URL

Use window.location.href to get current URL.

const currentUrl = _ => window.location.href;