Я новичок в мире кодирования и использую более красивое расширение в своем визуальном коде. Мой код выглядит так:
addItemToForm: function () {
document.querySelector(
UISelectors.itemNameInput
).value = ItemCtrl.getCurrentItem().name;
document.querySelector(
UISelectors.itemCaloriesInput
).value = ItemCtrl.getCurrentItem().calories;
Что мне следует сделать в форматировании, чтобы моя цитата выглядела так, как показано ниже?
addItemToForm: function () {
document.querySelector(UISelectors.itemNameInput).value =
ItemCtrl.getCurrentItem().name;
document.querySelector(UISelectors.itemCaloriesInput).value =
ItemCtrl.getCurrentItem().calories;}
}
Заранее спасибо