Tagged Questions
The use-strict tag has no wiki summary.
20
votes
11answers
3k views
Is there a need for a “use strict” Python compiler?
There exist static analysis tools for Python, but compile time checks tend to be diametrically opposed to the run-time binding philosophy that Python embraces. It's possible to wrap the standard ...
2
votes
2answers
100 views
Javascript: prototype method error?
I am getting a "TestFunc is not defined" error when this bit of code...
/* my_object.js */
"use strict";
function MyObject (param) {
this.param = param;
}
MyObject.prototype.TestFunc = function ...
1
vote
0answers
27 views
John Resig's simple class instantiation and “use strict”
Reference : http://ejohn.org/blog/simple-class-instantiation/
// makeClass - By John Resig (MIT Licensed)
function makeClass(){
return function(args){
if ( this instanceof arguments.callee ) {
...