/**
* Converts rem to px
*
* @param rem {number} Number in rem
* @returns {number} Number in px
*/
function remToPx(rem) {
return rem * parseFloat(getComputedStyle(document.documentElement).fontSize);
}
Media queries if (window.matchMedia('(max-width: 40em)').matches) {doSomething();}
Special ops forces, like the Green Berets or Navy Seals, use small teams and rapid deployment to accomplish tasks that other units are too big or too slow to get done.
The White Stripes embrace constraints by sticking to a simple formula: two people, streamlined songs, childlike drumming, keeping studio time to a minimum, etc.
Apple’s iPod differentiates itself from competitors by not offering features like a built-in fm radio or a voice recorder.
PHP
Russian format for numbers
/**
* Formats numbers in Russian
*
* @param float $number Number
*
* @return string Formatted number
*/
function number_format_groups(float $number): string {
return number_format($number, 0, ',', ' ');
}
Telephone links
/**
* Creates tel: links from telephone number
*
* @param string $tel Telephone number e.g. '+7 (999) 999-99-99'
*
* @return string URL for href e.g. 'tel:%2B79999999999'
*/
function telencode(string $tel): string {
return 'tel:'.str_replace(['+', ' ', ' ', '(', ')', '-'], ['%2B'], $tel);
}