Skip to content

Instantly share code, notes, and snippets.

@diegogriep
Last active May 30, 2020 18:43
Show Gist options
  • Save diegogriep/06195af59a764d5781300a2593883f0e to your computer and use it in GitHub Desktop.
Save diegogriep/06195af59a764d5781300a2593883f0e to your computer and use it in GitHub Desktop.
const createArray = <A, B = number>(a: A, b: B) => {
return [a, b];
}
let otherArray = createArray<string | null>("Junho", 6);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment