I would like to assign value of product of two integer numbers into a hidden field already in the html document. I was thinking about getting the value of a javascript varia
add some id for an input
var multi = product(2,3); document.getElementById('id').value=multi;