This one is doing my head in, how do you join 2 variables in EOS?
ie.
var Firstname = "Harry";
var Surname = "Potter";
var Fullname = Firstname + ' ' + surname
I'm sure it should be easy
Thanks a mil!



Legend! i thought i tried it... but nope! missed this one.Thamrill wrote: Wed Oct 21, 2020 3:02 pm Eos scripting engine should be plain JavaScript.
I don't know very much of JavaScript, but I found this: https://www.w3schools.com/jsref/jsref_concat_string.asp
Code: Select all
string1 = string1 + string2;Code: Select all
var string3 = string1 + string2;