So I\'m trying to add to a string and it shows up as empty.
var DNA = \"TAG\"; var mRNA = \"\"; m_RNA() function check(a, b, string) { if (string = a) {
mRNA.concat(b); doesn't mutate the string, it only computes the value. You need tomRNA = mRNA.concat(b) (or mRNA = mRNA + b) to change the value of mRNA.
mRNA.concat(b);
mRNA = mRNA.concat(b)
mRNA = mRNA + b
mRNA