Not a member of GistPad yet?
Sign Up,
it unlocks many cool features!
- let userInput = document.getElementById('userInput')
- let fact = document.getElementById('fact')
- let options = {
- method: 'GET'
- }
- let url = 'https://apis.ccbp.in/numbers-fact?number='
- userInput.addEventListener('keydown', () => {
- fetch(url + userInput.value).then((response) => {
- return response.json()
- }).then((jsonData) => {
- console.log(jsonData)
- fact.textContent = jsonData.fact
- })
- })
RAW Paste Data
Copied
