Home
Javascript Fundamentals
# Javascript basics
# Javascript arrays
# Javascript objects
# Javascript dates
# Javascript Sets
Javascript DOM
# DOM selector methods
# Events and user interactions
# DOM manipulation
# DOM fundamentals
# Recursive functions
Challenge Rush
Random Challenge
// It seems like something happened to these strings// Can you figure out how to clear up the chaos?// Write a function that joins these strings together such that they form the following words:// 'Javascript', 'Countryside', and 'Downtown'// You might want to apply basic JS string methods such as replace(), split(), slice() etc function myFunction ( a, b ) { return }
return
myFunction('java', 'tpi%rcs')
'Javascript'
myFunction('c%ountry', 'edis')
'Countryside'
myFunction('down', 'nw%ot')
'Downtown'