Three Way Compare Variables and Strings
Three Way Compare Variables and Strings
So I want to compare two JavaScript variables and see if they match and are equal to a specified string. One variable is based off of user input, the other is from a database. Here is an example of what I was hoping could work...
var userInput = "Simple";
var databaseData = "Simple";
if (userInput == databaseData == "Simple") ...
and what I know works.
if (userInput == "Simple" && databaseData == "Simple") ...
So the first example doesn't seem to work, even with 3 equal signs instead of 2. Is what I was hoping to work possible in some other way (the purpose is simplicity and compactness) or is what I know works the best way to do it?
userInput == databaseData
true
a == b == c
((userInput == databaseData ? "Simple" : null) == "Simple")
– Jay
Aug 31 at 23:01
userInput == databaseData == "Simple"
would equate to => userInput == true
=> false
– Lee Taylor
Aug 31 at 23:05
userInput == databaseData == "Simple"
userInput == true
false
1 Answer
1
This function returns true if all its arguments are strictly equal:
function allEqual(...args) el === arr[i-1]);
Whether or not it makes sense to use it on three values, like this...
if (allEqual(userInput, databaseData, 'Simple')) ...
... is up to you.
Thanks for contributing an answer to Stack Overflow!
But avoid …
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
But avoid …
To learn more, see our tips on writing great answers.
Required, but never shown
Required, but never shown
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.
See,
userInput == databaseData
is a valid expression on its own, and its result istrue
(boolean). It's hard to understand that you actually wanted to ignore that - and usea == b == c
as a completely different type of expression, true if all its parts are equal.– raina77ow
Aug 31 at 23:00