JSFiddle - React, Tailwind, and code Playground

JavaScript

var cachedWidth;
console.log('Cached width is...', cachedWidth);
var iosWidth = cachedWidth || (function() {
    return cachedWidth = window.innerWidth;
})();

console.log('Now width is cached: ', cachedWidth);