[JS] JavaScript 小技巧筆記
實用
使用連續等於
會先從後面賦值,才往前賦值
overtime = house = listingDetail = {...}
轉址
keywords: redirect
// similar behavior as an HTTP redirect
window.location.replace("http://stackoverflow.com");
// similar behavior as clicking on a link
window.location.href = "http://stackoverflow.com";
How to redirect to another webpage? @ StackOverflow