M.removeClass = function(el, cl) {
el = $(el);
var className = el.className.replace(new RegExp('\\b' + cl + '\\b', 'g'), ' ');
if (className != el.className) {
el.className = className;
}
};
alert('prefix-name other'.replace(/\bname\b/g, ' '));
function random(start, end) {
if (arguments.length == 1) {
end = start;
start = 0;
}
return Math.random() * (end - start) + start;
}
Шанс start стремится к нулю, но не равен ему, шанс end == 0. Несимметрично.