, если у вас уже есть этот скрытый ввод:
function product(a, b) {
return a * b;
}
function setInputValue(input_id, val) {
document.getElementById(input_id).setAttribute('value', val);
}
Если нет, вы можете создать его, добавить к телу и установить его значение:
function addInput(val) {
var input = document.createElement('input');
input.setAttribute('type', 'hidden');
input.setAttribute('value', val);
document.body.appendChild(input);
}
И тогда вы можете использовать (в зависимости от случая):
addInput(product(2, 3)); // if you want to create the input
// or
setInputValue('input_id', product(2, 3));