🤷♂️JS body class
Add to <body>
window.document.body.classList.add('some-class')
window.document.body.classList.replace('no-js', 'js')
Add to <html>
window.document.documentElement.classList.replace('no-js', 'js') <body>window.document.body.classList.add('some-class')
window.document.body.classList.replace('no-js', 'js')
<html>window.document.documentElement.classList.replace('no-js', 'js')