нагрузку в 10к соединений сервер?
Object.prototype.any = function() {
console.log('object.any');
return this;
};
Array.prototype.any = function() {
console.log('array.any');
return this;
};
// или -----------------------------------------------
Object.defineProperty(Object.prototype, 'any', {
value: function() {
console.log('object.any');
return this;
},
enumerable: false,
writable: true // for assigment operation (=) support
});
Array.prototype.any = function() {
console.log('array.any');
return this;
};
// или -----------------------------------------------
Object.defineProperty(Object.prototype, 'any', {
value: function() {
console.log('object.any');
return this;
},
enumerable: false
});
Object.defineProperty(Array.prototype, 'any', {
value: function() {
console.log('array.any');
return this;
},
enumerable: false
});
// ---------------------------------------------------
[].any(); // array.any
({}).any(); // object.any
var put = function(elem, text) {
var text = encodeURIComponent(text);
return {
now: function(a) {
var a = encodeURIComponent(a) || '';
return {
add: function() {
elem.outerHTML += text + a;
},
replace: function() {
elem.outerHTML = text + a;
},
}
},
after: function(time) {
// do smth
},
}
}
put(document.getElementById("div_id"), "Hello ").now("world!").replace();
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\myscript" %*
) ELSE (
node "%~dp0\myscript" %*
)myscript datafile.txtinput:focus{
outline: solid 2px red;
}