skip to Main Content

Javascript – how to optimize fetching data from JSON

Is there any solutions of fetching data more fast and determine data length without loading all JSON data. Here is code const url = "https://jsonplaceholder.typicode.com/comments"; const [data, setData] = useState([]); const [colorScheme, setColorScheme] = useState(true); const [loader, setLoader] = useState(true);…

VIEW QUESTION
Back To Top
Search