Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
202 views
in Technique[技术] by (71.8m points)

javascript - chaining double equals == returns false

I have 3 textboxes that I am trying to do some validation that all 3 values match. I have a simple function:

    function DoesSubsriberSignatureMatch() {
    return tbNameOfSubscriber.GetText() == tbSubscriberSig1.GetText() == tbSubscriberReEnter.GetText();
}

I stepped through with the debugger, and it seems in Javascript in Chrome at least, "a"=="a" returns true, but "a"=="a"=="a" returns false.

Why?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Take

"a"=="a"=="a"

and break it down. So first

"a" == "a"

equals what? true. Right. Now substitute true in for that first part

true == "a"

which of course is false


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...