disable text selection in js

JavaScript
onselectstart = (e) => {
  e.preventDefault()
  console.log("nope!")
  }
Source

Also in JavaScript: