function getValues()
{
return [value1,value2];
}
var values = getValues();
var first_value = values[0];
var second_value = values[1];
Here you can find small coding snippets in case you got stuck in the middle of the programming
function getValues()
{
return [value1,value2];
}
var values = getValues();
var first_value = values[0];
var second_value = values[1];
Programmer View more posts