You can use Multiple clause in if
condition instead of writing
if (windowsize > 500-600) {
// do this
}
because this really makes no sense logically JavaScript will read your if condition like
windowSize > -100
because it calculates 500-600
to -100
You should use &&
for strict checking both cases for example which will look like this
if( windowSize > 500 && windowSize < 600 ){
// Then doo something
}