Guest

Know Fact About the Number-js

May 11th, 2026
8
0
Never
Not a member of GistPad yet? Sign Up, it unlocks many cool features!
  1. let userInput = document.getElementById('userInput')
  2. let fact = document.getElementById('fact')
  3. let options = {
  4. method: 'GET'
  5. }
  6. let url = 'https://apis.ccbp.in/numbers-fact?number='
  7. userInput.addEventListener('keydown', () => {
  8. fetch(url + userInput.value).then((response) => {
  9. return response.json()
  10. }).then((jsonData) => {
  11. console.log(jsonData)
  12. fact.textContent = jsonData.fact
  13. })
  14. })
RAW Paste Data Copied