Map.get/3

defmodule Map do
  def get(map, key, default \\ nil)
end

Gets the value for a specific key in map.

Otherwise, default is returned.