Encode a URI

JS
S
JavaScript

JavaScript encodeURIComponent() Function Docs: https://www.w3schools.com/jsref/jsref_encodeuricomponent.asp

1const url = '/bw/20180626_111824_59d665015d45052cd64f5466/300x250/variant_3/index.html';
2const encoded = encodeURIComponent(url);
3// "%2Fbw%2F20180626_111824_59d665015d45052cd64f5466%2F300x250%2Fvariant_3%2Findex.html"

Created on 9/25/2018