Write a function that joins the two given lists into a single list? function solve( a, b ){ //write your code here } Login to Submit
Input: [1, 2] , [3, 4] Output: [1, 2, 3, 4]