It seems that it would be wise to use def, fn, or fun for function definitions similar to Ruby or other succinct languages.

Now that it's too late to change things due to potential compatibility issues, the whole world is forced to suffer using that wasteful long name 'function' everywhere in JavaScript code.

link|improve this question

78% accept rate
Can't change the past, so why worry about it? – Matthew Jones Feb 9 '10 at 23:25
I don't think it is a real problem... – Andras Csehi Feb 9 '10 at 23:25
Code Readability > Optimization – mauris Feb 9 '10 at 23:27
It would be nice if it were smaller/shorter but this doesn't materially effect the difficulty of developing software in JavaScript. Anonymous functions are a nice feature however bad the syntax is. – Jared Updike Feb 9 '10 at 23:28
how much time could typing 5 or 6 extra characters take??? – Ryan Ferretti Feb 9 '10 at 23:29
show 1 more comment
feedback

closed as not constructive by Matthew Jones, deceze, David Thomas, mjv, mauris Feb 9 '10 at 23:26

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

4 Answers

up vote 2 down vote accepted

I don't know if I would call it a "big mistake." But I do occasionally wish for something shorter, though. I'd want to use a special syntax, something like |a,b|{return a+b;} or even better, |a,b|{a+b} if it could implicitly determine the return for short expressions.

Sigh...

On the other hand, so we don't go away from this question feeling depressed, isn't it AWESOME how we have great shorthands for object and array literals in javascript? So awesome it brought us JSON! If you ask me, the data structure shorthands are much more important anyway, so cheer up. ^_^

link|improve this answer
feedback

"Big mistake"? Apparently not - JavaScript's more popular than Ruby or other succinct languages. The two don't appear to be correlated.

There are lots of things to lament about JavaScript, but "function" isn't high on the list.

link|improve this answer
feedback
function reply() {alert("No, it wasn't!");}
link|improve this answer
feedback

Since functions are first class objects "function" seems like a good choice.

link|improve this answer
feedback

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