how to close current tab in a browser window using javascript code example
Example 1: how to close tab by javascript
<button onclick="window.close();">Exit</button>
function closeWin() {
myWindow.close();
}
function openWin() {
myWindow = window.open("", "myWindow", "width=200, height=100");
}
Example 2: how-to-close-current-tab-in-a-browser-window
Writing this on 24 Dec 2020. Tried almost all the things available on google, but none of them worked in Chrome browser. window.open('','_self').close() works for IE.