We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I found this in the cheatsheet: https://github.com/MatthijsKamstra/haxenode/blob/master/haxenode/cheatsheet.md
Type Casting section:
JavaScript var car:Car = vehicle as Car; var toString:String = String (10); var toNumber:Number = Number ("10"); var toInteger:int = int (10.1);
JavaScript
var car:Car = vehicle as Car; var toString:String = String (10); var toNumber:Number = Number ("10"); var toInteger:int = int (10.1);
Function types section:
JavaScript function hello (msg:String):void { } var type:Function = hello;
function hello (msg:String):void { } var type:Function = hello;
This is not valid JavaScript, Javascript doesn't have types
The text was updated successfully, but these errors were encountered:
you are completely true... I just copy paste it from http://www.openfl.org/archive/developer/documentation/actionscript-developers/ in this one might have slipped my attention
Sorry, something went wrong.
I only just notice you added this to node.js... the same mistake is in js
No branches or pull requests
I found this in the cheatsheet: https://github.com/MatthijsKamstra/haxenode/blob/master/haxenode/cheatsheet.md
Type Casting section:
Function types section:
This is not valid JavaScript, Javascript doesn't have types
The text was updated successfully, but these errors were encountered: