I tried to understand some code. It begin like this:
function Drawing(varCanvas, varSize, varPrice) {
var c = this;
this.allow = !1;
this.size = varSize;
this.$canvas = varCanvas;
(.....)
this.allow = !0;
I don't understand why the developer wrote "this.allow = !1;" I never seen this writing before.