ConnectiveRx interview question

$array = array( "1" => "a", "1" => "b", "1.5" => "c", true => "d", ); print_r($array);

Interview Answer

Anonymous

2 Apr 2020

["1" => "d", "1.5" => "c"] is the correct answer