ALGORITHMS2

ALGORITHMS2

by SHELDON PASCIAK

HTML

<div id="banner-message">
  <button>RUN</button>
  <div id="result">  
  </div>
</div>

CSS

/*

Write a function that accepts a string. The function should
capitalize the first letter of each word in the string then
return the capitalized string.

--- Examples
capitalize('a short sentence') --> 'A Short Sentence'
capitalize('a lazy fox') --> 'A Lazy Fox'
capitalize('look, it is working!') --> 'Look, It Is Working!'

*/

JavaScript

// find elements
var banner = $("#banner-message")
var button = $("button")


button.on("click", () => {

let inputFromUser = prompt("Enter something:","default something");

alert(inputFromUser);

 
})