Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Reference: http://theoatmeal.com/comics/misspelling

  • then refers to an expression regarding time. E.g. "First I went to the store, then I bought milk."
  • than refers to a comparison. E.g. "I know the ground is harder than my face!"

An IF statement is a comparison. Therefore, it seems that the comparison should use than. However, it uses then instead.

Is my reasoning flawed here? Or is it just that 99% of people write then instead and that's what they went with?

share|improve this question
To all those answers who said "Well it just looks correct that way to me" -- sorry, -1. – Billy ONeal Jun 21 '11 at 19:22

7 Answers

up vote 18 down vote accepted

"If (the ground is harder THAN my face), THEN put my hands over my face as I approach the ground."

The "THEN" follows the comparison -- it does not express the comparison.

share|improve this answer
2  
This is one of those answers that makes you smack yourself on the head and say "DUH!". :sigh: +1. – Billy ONeal Jun 21 '11 at 19:27
@Billy ONeal - :) I myself am very well acquainted with my face approaching the ground. – Andy Thomas Jun 21 '11 at 19:32
1  
+1 for a cute answer that is also useful – Flimzy Jun 21 '11 at 20:03

Because "than" means something entirely different. The source you quoted has an incomplete definition.

share|improve this answer
Entirely different than what? – Billy ONeal Jun 21 '11 at 19:19
1  
Then is different than than. ha! – Flimzy Jun 21 '11 at 19:20
Obviously, I defined them both in my question. However, I'm saying between the two it seems the correct one should be than. – Billy ONeal Jun 21 '11 at 19:21
Right, but I'm saying that the definitions you posted are incomplete, and I provided a more thorough explanation of when to use each. – Flimzy Jun 21 '11 at 20:02

It should be "then".

IF I go to the store, THEN I will be tempted to buy everything.

share|improve this answer

Dictionary.com entry for "then":

then   
[then] –adverb
1. at that time: Prices were lower then.
2. immediately or soon afterward: The rain stopped and then started again.
3. next in order of time: We ate, then we started home.

3. next in order of time is the relevant entry here.

share|improve this answer
How is that "next in the order of time"? then in this case certainly is not conveying temporal meaning. – Billy ONeal Jun 21 '11 at 19:20
1  
"If condition x is met, the next thing you will do (THEN) is y" – Problematic Jun 21 '11 at 19:22

"Than" compares two concepts based upon their differences. This is not appropriate for "if-then", since the "then" clause is associated with the "if" clause, not opposite to it.

"Then" makes somewhat more sense regarding time: first satisfy the "if" condition; after that, execute the "then" statement.

share|improve this answer

It does use the definition of "then" properly.

If (condition) THEN 
    { do this }
else 
    { do this otherwise }
share|improve this answer

If true then do something.

If object1 is bigger than object2 then do something.

share|improve this answer
Yeah thanks for the -1. Maybe you should try reading the statements, and you can clearly see THEN is used correctly in programming. – Yogurt The Wise Jun 21 '11 at 19:42
This answer does nothing to explain anything. That's why it got a -1. You've basically said "Well I think it looks right like this" without any justification whatsoever. – Billy ONeal Jun 22 '11 at 2:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.