fork download
  1. function love(who1, who2) {
  2. return `${who1}.tle ❤️ ${who2}.may`;
  3. }
  4.  
  5. console.log(love("rattaphum", "melanee"));
  6. rattaphum.tle ❤️ melanee.may
  7.  
Success #stdin #stdout 0.03s 25880KB
stdin
Standard input is empty
stdout
function love(who1, who2) {
  return `${who1}.tle ❤️ ${who2}.may`;
}

console.log(love("rattaphum", "melanee")); 
 rattaphum.tle ❤️ melanee.may