The .leftJoin() is used to perform an outer join. All rows from the left side collection will always be returned regardless of not matching the right side collection rows. The .leftJoin() can be immediately after the .from() or a previous .on().

The .leftJoin() can handle 1 to many arguments. Each argument can be a mix of collections of JSON objects. If multiple collections are provided then all collections will be outer joined with the collection(s) from the .from().

leftJoin(array, array , array, ...)
type Collection<T> = T[];
leftJoin<T>(collection: Collection<T>, ...collections: Collection<T>[]): jinqJs;