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

Is there a way to enforce types in JavaScript? I'm thinking of a pre-processor which takes an input file written in ActionScript 3 or Java and converts it to JS.

I do not need a big run-time apparatus, I just need to introduce the idea of compile-time in my workflow and run the trivial compile-time checks on my code (and also use interfaces). Neither I need the API from Java or Flex, just the syntax.

The standard browser-functions could also be checked against the IDL definitions, but it is not a must.

share|improve this question
By types you mean variable types? because that's easily done with typeof(variable). – Madara Uchiha Aug 13 '11 at 12:51
You can enforce 'typesafe equality checking' with === and !==. – pimvdb Aug 13 '11 at 12:52
Thanks for the ideas, I know it is possible to check types in JS manually, I just don't want to do it. – vbence Aug 13 '11 at 13:05
For compile-time type validation the JavaScript needs to be generated (as JavaScript only allows you to do runtime checks). This is likely to become the norm for big JavaScript projects. – Christophe Roussy Dec 13 '12 at 17:50

4 Answers

up vote 8 down vote accepted

You should take a look at the haxe project.

Haxe is a very nice typed language that uses type inference (i.e. you're not forced to write a lot of type declarations) but that enforces type correctness at compile time.

The language has a javascript-like syntax and the compiler can generate code for the neko virtual machine, for javascript, as3, c++ or PHP.

share|improve this answer
1  
Excellent! This is exactly what I dreamed about :) – vbence Aug 13 '11 at 16:32

GWT does what looking for, but its a way oversized for the most cases. You could take a look at googles closure framework which fakes the typed safe with anotations

share|improve this answer
1  
Thanks, closure is definitely a step into the right direction, but being a JS2JS compiler it forces me to use those uber-clumsy annotations. I admit this is useful if JS is the only laguage one knows, but IMHO using Java or AS3 would be the right way. – vbence Aug 13 '11 at 13:18

While typeof will return 'object' for every object or array, you can use the instanceof statement. Say you have a class Person, and want to see whether the object passed to your function is a Person, you can do this:

function someFunc(person){
  if(! person instanceof Person)
    throw('argument needs to be an instance of Person.');

  /* ... do your stuff ... */
}

If you just want to make sure a variable is the number 3 instead of a string '3', you only need to use === instead of ==:

if( var === 3 ){
  /* ... do your stuff ... */
}
share|improve this answer
Thanks, but the point of the question is that I want these things automated. Using === is not a big overhead, but run-time checks are only useful coupled with unit testing and even then it is not guaranteed that every call of the function has been run during the tests. – vbence Aug 13 '11 at 14:28

I agreed that Javascript is a beautiful language, with some glaring holes, the worst and most unremarked of which is the absence of static type-safety.

As eskimoblood pointed out, there are some half-measures in the form of GWT and Closure but the right answer, imo, is Scala, which combines Javascript's flexibility and expressive power with a type system much better than Java's -- or that would be the right answer except that the Scala-GWT project seems to have gotten bogged down.

For now, we wait...

share|improve this answer

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.