Skip to content

Instantly share code, notes, and snippets.

@productioncoder
Created November 2, 2018 07:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save productioncoder/1e00fb83851d5aa6236f5f7cc56c23a7 to your computer and use it in GitHub Desktop.
Save productioncoder/1e00fb83851d5aa6236f5f7cc56c23a7 to your computer and use it in GitHub Desktop.
Youtube get query parameter v from URL
getVideoId() {
const searchParams = new URLSearchParams(this.props.location.search);
return searchParams.get('v');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment