I have this variable:
var _inputs = document.getElementsByTagName('input');
But I want to make a new variable that will select all inputs, except the inputs that have a specific class like “.nothis”.
var _newinputs = document.getElementsByTagName('input') && document.getElementsByClass('!nothis');
document.querySelectorAll(‘input:not(.nothis)’)