Created
January 24, 2018 10:44
-
-
Save lplume/f3da6aaed8c6ce71512471e4cd621323 to your computer and use it in GitHub Desktop.
Have a nice time
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const str = "Something back"; | |
say(str); | |
say(back(str)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
say=function(a){return window.speechSynthesis.cancel(),window.speechSynthesis.speak(new SpeechSynthesisUtterance(a))},back=function(a){return a.toLowerCase().split("").reverse().join("")}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment