Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I had a great idea for a new javascript keyword "delay", but I don't know what I can do to bring it to the new specification. Also I want to know what you guys think about it and if it's even realistic.

What does the delay keyword ?

The delay keyword does nothing more than stop the execution of the current stack and immediately continues to the next "job" in the queue. But that's not all! Instead of discarding the stack, it adds it to the end of the queue. After all "jobs" before it are done, the stack continues to execute.

What is it good for?

delay could help make blocking code non-blocking while it still looks like synchronous code. A short example:

setTimeout(function(){
    console.log("two");
},0);
console.log("one");
delay; //since there is currently another task in the queue, do this task first before continuing
console.log("three");

//Outputs: one, two, three

This simple keyword would allow us to create a synchronous-looking code wich is asynchronous behind the scenes. Using node.js modules, for example, would no longer be impossible to use in the browser without trickery.

There would be so many possibilites with such a keyword!

What do YOU JAVASCRIPT DEVELOPERS think about it? What do you think can I do to bring this into the new ECMAscript Specification?

Please disuss as much as you want! :)

share|improve this question
1  
I'm ok with downvotes, but please do justify them ;) – Van Coding Jul 4 '12 at 15:56
2  
That might be a good idea, but it doesn't fit the format of StackOverflow. Just read the FAQ. – KL-7 Jul 4 '12 at 15:57
1  
This site is for questions which can be answered, not for open discussions! – helpermethod Jul 4 '12 at 15:57
1  
@VanCoding Try to write to these guys: ecmascript.org ;) – antyrat Jul 4 '12 at 15:59
1  
@VanCoding, a good place for the discussion you were trying to start is a mailing list or an IRC channel. – KL-7 Jul 4 '12 at 16:00
show 12 more comments

closed as not constructive by antyrat, Quentin, lonesomeday, Prince John Wesley, KL-7 Jul 4 '12 at 15:56

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.