this post was submitted on 25 Jan 2025
1474 points (99.1% liked)
Programmer Humor
20251 readers
1859 users here now
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
Rules
- Keep content in english
- No advertisements
- Posts must be related to programming or programmer topics
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I’m going to have to go down the rabbit hole of making my own website soon. Just curious but would there be an easy way to show a pop up just to people using chrome?
No reason in particular… 😏
lol i did something like what i assume your goal is on my neocities when i detect
!!window.chrome === true
Why the double negation?
JS "idiomatic" way to cast to boolean. But could just be written as
!window.chrome
instead.