--- title: URL.toJSON() slug: Web/API/URL/toJSON tags: - API - Method - Reference - URL - URL API translation_of: Web/API/URL/toJSON ---
{{domxref("URL")}} 인터페이스의 toJSON()
메서드는 URL을 직렬화한 {{domxref("USVString")}}을 반환합니다. 그러나, 사실상 {{domxref("URL.toString", "toString()")}}과 같습니다..
{{AvailableInWorkers}}
const href = url.toJSON()
{{domxref("USVString")}}.
const url = new URL("https://developer.mozilla.org/en-US/docs/Web/API/URL/toString"); url.toJSON(); // should return the URL as a string
Specification | Status | Comment |
---|---|---|
{{SpecName('URL', '#dom-url-tojson', 'toJSON()')}} | {{Spec2('URL')}} | Initial definition. |
{{Compat("api.URL.toJSON")}}