var src = document.querySelector('[src*="bundle"]').getAttribute("src");
__webpack_public_path__ = src.substr(0, src.lastIndexOf("/") + 1);
var data = [
{text: 'College', id: 1},
{text: 'University', id: 2},
{text: 'School', id: 3}
];
data = data.filter(function (item) {
return item.id !== 2;
});
var args = [1,2,3,4];
//es5
var myClassInstance = new (Function.prototype.bind.apply(MyClass, [null].concat(args)));
//es6
var myClassInstance = new MyClass(...args);
$('button').on('click', function(e) {
e.preventDefault();
var $emptyFields = $('textarea, input[name=name], input[name=email]').filter(function() {
return !$(this).val();
});
if ($emptyFields.length) {
return alert('Все поля обязательны!');
}
//тут еще много кода
});