如何在JavaScript中获取当前URL?

如在Window.location速查表中所提到的,JavaScript提供了许多属性和方法来处理当前URL。其中,Window.location.href提供了获取当前URL字符串的最简单方法。

const currentURL = () => window.location.href;

currentURL(); // 'https://www.google.com/'