this post was submitted on 16 Dec 2023
86 points (95.7% liked)
Programming
17313 readers
150 users here now
Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!
Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.
Hope you enjoy the instance!
Rules
Rules
- Follow the programming.dev instance rules
- Keep content related to programming in some way
- If you're posting long videos try to add in some form of tldr for those who don't want to watch videos
Wormhole
Follow the wormhole through a path of communities !webdev@programming.dev
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
If it has it's totally accidental.
What's the use case for searching for those kind of symbols? I'll check if I can tune it for this.
When you want to know the name of the operator for a language.
Like "what does & mean in c++?".
&
isn't too bad, but some of them can be difficult (like "JavaScript ??").And if you don't know it's called a reference operator, or a bullish coalescence operator, or whatever... Trying to learn what it does can be downright impossible
For ?? I guess it already has a decent results. I’ll periodically check those kind of cases once the index gets more languages.
https://kukei.eu/?q=js+%3F%3F+operator
?? is intuitive if you (truly) understand ||
Yea, I don't know why people want to learn things - it's easier to just know them! /s
Have you tried divining syntax from reading the entrails of a sacrificed goat?
It works on my machine
What? The previous comment said it's "downright impossible to learn" which is nonsense.
|| means "Evaluate and use the left operand, unless it's falsy, in which case evaluate and use the right operand instead"
?? means "Evaluate and use the left operand, unless it's nullish, in which case evaluate and use the right operand instead"
They're the same thing except for which values fall through to the second operand
Yea, I'm well aware.
But you had to learn that somewhere... nothing is intuitive for a novice.