Я бы хотел sh передать значение в массив одновременно с добавлением к нему объекта. Это возможно? Вот короткая демонстрация моего кода:
let abc = [
[],
{}
];
$('form').find('input').each(function() {
// This works but I'd like to do it in one step if possible
abc[0].push(this);
abc[1][this.name] = 'Text';
// I'd like to change it to something like this
abc = [
this,
this.name: 'Text'
];
)};