#JavaScript (ES6), 14 bytes
JavaScript (ES6), 14 bytes
Takes input as an array of 2 strings. Inspired by Luis' answer.
JSON.stringify #JavaScript (ES6), 21 20 bytes
JavaScript (ES6), 21 20 bytes
Takes input as (a)(b).
a=>b=>[a.length,a]+b Returns the length of \$a\$, followed by a comma, followed by the concatenation of \$a\$ and \$b\$.