function getEditModalValues() { const nameInput = document.getElementById('editInputName').value; const priceInput = document.getElementById('editInputPrice').value; const buildVolumeInput = document.getElementById('editInputBuildVolume').value; const maxSpeedInput = document.getElementById('editInputMaxSpeed').value; return {nameInput, priceInput, buildVolumeInput, maxSpeedInput}; } function clearCreateModalValues() { document.getElementById('inputName').value = ''; document.getElementById('inputPrice').value = ''; document.getElementById('inputBuildVolume').value = ''; document.getElementById('inputMaxSpeed').value = ''; } function getCreateModalValues() { const nameInput = document.getElementById('inputName').value; const priceInput = document.getElementById('inputPrice').value; const buildVolumeInput = document.getElementById('inputBuildVolume').value; const maxSpeedInput = document.getElementById('inputMaxSpeed').value; return {nameInput, priceInput, buildVolumeInput, maxSpeedInput}; }