Thanks everyone I have gotten the answer through the hint gotten from the answers posted.the breakdown of the answer I used was to convert my code above to a function and pass it in side a window event.
window.addevenElistener('resize', () => {
if(window.innerwidth =< 992){
RunsSomeFunction()
} else {
do something }
})