Skip to content

Tag: javascript

how to prevent force dark mode by system?

Dark/Light mode toggle settings on websites and app are tredning and there is a some system default theme mode also available like chrome dev-tools provide force dark-mode, but I want my website to be view in the way it has been built. So, How do I prevent the force dark-mode, applied by chrome? I have tried …

Typeof comparison in Javascript

Why is typeof stringVariable not equal to String; console.log(typeof ‘hello’ === String) // returns false Why does js behave like this? let arr1 = [‘nabeel’, ‘aron’, 123, true] // find let …