Algorithms
Control flow for algorithm
Use caseUse this
Exit only the loop? Bonus → only the most inner loopbreak
Skip this iteration and continue loop?continue
Exit function early?return
Use-case of break
include(substring) {
const str = th...
vincenguyen.hashnode.dev6 min read