var mediaQuery = window.matchMedia("screen and (min-width: 855px)");
mediaQuery.addListener(myFunc);
function myFunc(mq) {
if (mq.matches) {
document.body.style.backgroundColor = '#060';
} else {
document.body.style.backgroundColor = '#900';
}
}
myFunc(mediaQuery);