Suppose I have a table M which is : [[1 A],[2 B],[3 C]] and another table N: [[3 a],[2 b]]
Applying a left join(using 1st column in table M as the primary key),will give the resulting table as: [[1 A],[2 B b],[3 C a]]
How can this be implemented using javascript?