Skip to content

Instantly share code, notes, and snippets.

@vamsee9
Last active April 3, 2021 10:15
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 vamsee9/289fc68bdf3b40060d8a69cfc759a576 to your computer and use it in GitHub Desktop.
Save vamsee9/289fc68bdf3b40060d8a69cfc759a576 to your computer and use it in GitHub Desktop.
navigator.mediaDevices.getUserMedia({ audio: true })
.then(function(stream) {
console.log('You let me use your mic!')
})
.catch(function(err) {
console.log('No mic for you!')
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment