I am very new to programming, this is probably an easy task for most people, haha.
I want a variable (text) to be made from two other variable. For example:
var abc = "app"
var def = "les"
var ghi = (abc,def)
document.write(ghi)
And the end result would be:
apples
Unfortunately, the above code is not working for me.
Sorry if this is super simple stuff, thank you if you do end up helping me.