Quantcast
Channel: Is it possible to use .contains() in a switch statement? - Stack Overflow
Browsing latest articles
Browse All 4 View Live

Answer by TimT for Is it possible to use .contains() in a switch statement?

An alternative implementation might be this. Not much in it but reads better than switch(true)...const href = window.location.href;const findTerm = (term) => { if (href.includes(term)){ return href;...

View Article


Answer by user2864740 for Is it possible to use .contains() in a switch...

"Yes", but it won't do what you expect.The expression used for the switch is evaluated once - in this case contains evaluates to true/false as the result (e.g. switch(true) or switch(false)), not a...

View Article


Is it possible to use .contains() in a switch statement?

This is just a simple example of what I'm trying to do:switch (window.location.href.contains('')) { case "google": searchWithGoogle(); break; case "yahoo": searchWithYahoo(); break; default:...

View Article

Answer by Ooker for Is it possible to use .contains() in a switch statement?

Try the tldts library:npm i tldtsimport { parse } from "tldts";const domainWithoutSuffix = parse(href).domainWithoutSuffix;switch (domainWithoutSuffix) { case "facebook": // do stuff case "github": //...

View Article
Browsing latest articles
Browse All 4 View Live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>