Skip to content

FullJoin doesn't work properly when joining multiple array when one of the array is empty #28

@sanjeev40084

Description

@sanjeev40084

Create 2 new arrays and add data on first array and don't add any data on second array.

$arrayList1 = @()
$arrayList2 = @()

$arrayList1 += "james"
$arrayList1 += "henry"

$arrayList1 |FullJoin $arrayList2 -Name arrayList1, arrayList2

The output looks like this:

james
henry

Expected:

arrayList1 arrayList2
james
henry

Metadata

Metadata

Assignees

Labels

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions