Hello, today I’m very excited because I’m doing something very interesting to me and I hit a hard thing that tried a couple hours to fix it and no luck.
I have a database with 3 rows.
console.log(A.value);
console.log(B.value);
console.log(C.value);
-------------------------------
| Column A | Column B | Column C |
-------------------------------
| Lion | Turtle | Eagle |
-------------------------------
| Cow | Snake | Mouse |
-------------------------------
| Dolphin | Shark | Piranha |
-------------------------------
Actually, when I get the value from the DB and convert it to text it comes in this way:
https://puu.sh/B7sf6/607ba976f2.png
Lion, Turtle, Eagle
Cow, Snake, Mouse
Dolphin, Shark, Piranha
Instead of getting the entire row, I want to get it like this way:
https://puu.sh/B7sfJ/5714c0fee4.png
Lion, Cow, Dolphin
Thanks!