Skip to content

Instantly share code, notes, and snippets.

@jsmanifest
Created March 6, 2020 06:44
Show Gist options
  • Save jsmanifest/51c681182cb49eb56285968aa7ec3d67 to your computer and use it in GitHub Desktop.
Save jsmanifest/51c681182cb49eb56285968aa7ec3d67 to your computer and use it in GitHub Desktop.
function logAndReturnIt<T>(
valueThatIsGoingToBeLoggedAndReturnedFromAUselessFunction: T,
): T {
console.log(typeof valueThatIsGoingToBeLoggedAndReturnedFromAUselessFunction)
return valueThatIsGoingToBeLoggedAndReturnedFromAUselessFunction
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment