Frontend Developer | TS, react.js, next.js
-
Zoftify
- Tashkent, Uzbekistan
- @akbarjondev
- in/akbarjondev
Pinned Loading
-
Adds Event listeners to HTML element...
Adds Event listeners to HTML elements and safely removes them 1export function bind(target, { type, listener, options }) {
2target.addEventListener(type, listener, options);
34return function unbind() {
5target.removeEventListener(type, listener, options);
-
A complete guide to check data types...
A complete guide to check data types in JavaScript 1function getType(obj) {
2const lowerCaseTheFirstLetter = (str) => str[0].toLowerCase() + str.slice(1);
3const type = typeof obj;
4if (type !== 'object') {
5return type;
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.