How to detect internet explorer browser in JavaScript

In this Article we will go through how to detect internet explorer browser only using single line of code in JavaScript.

Let's define this short function:

const isIE = !!document.documentMode;