How do I find out if Javascript really works?
I've tried a few things in JavaScript but I'm not sure if it really works. How can I check if it's 100% working?
var timeInterval; function startUpdatingTime() { clearInterval(timeInterval); timeInterval = setInterval(updateTime, 120000); displayTimeSetting(); } function stopUpdatingTime() { clearInterval(timeInterval); displayTimeSetting(); } function doubleUpdateTime() { clearInterval(timeInterval); updateTime(); timeInterval = setInterval(updateTime, 60000); displayTimeSetting(); } function updateTime() { var xhr = new XMLHttpRequest(); xhr.onreadystatechange = function() { if (xhr.readyState === XMLHttpRequest.DONE) { if (xhr.status === 200) { var age = xhr.responseText; document.getElementById("antwort").textContent = "Antwort: " + antwort; } else { console.error('Es gab ein Problem mit der Anfrage.'); } } }; xhr.open("GET", "update_time.php", true); } startUpdatingTime();
In the planning phase (i.e. before writing code), you should have thought about what is your problem to solve and what requirements it poses. Test cases can be defined on this basis.
An example: A program for calculating the quotient from the division of two natural numbers (including 0) is to be developed.
A few possible test cases:
These cover not only the expected, usual applications, but also marginal cases.
Certainly you don’t always find all sorts of cases, but you can cover at least a large amount if you take some time. If you also do this before the concrete implementation, it can be easier and more stable than if you are not getting any changes in the aftermath.
During the implementation phase, you can implement unit tests that test individual functions. Yeast would be a framework that can be used in place.
A static code analysis would also be useful. If I only look at your codesnippet once, I’ll have undefined symbols: DisplayTimeSetting and Answer. With age again, you’re not doing anything.
Your used voice elements are no longer contemporary. Instead of variables with var to create, would let/const more sensible. You can send the request more easily with the Fetch API.
In this case, I have divided the function into two functions, as the process Page is therefore simpler to test. If the function name fits, you should consider yourself.
For an analysis of the runtime behavior of the application, I would recommend using a debugger. In all the well-known browsers (Brave, Chrome, Edge, Firefox, Opera, Safari, …) one is integrated into their web development tools.
Thank you, I tried fetch once, but I get mistakes again and again
function updateTime() {
fetch(“update_time.php”)
.then(response => {
if (!response.ok) {
throw new error(‘Network response was not ok’);
}
return response.text();
})
.then(age => {
document.getElementById(“age”).textContent = “Alter: ” + age;
})
.catch(error =>
console.error(‘There was a problem with the fetch operation:’, error);
};
}
GET … net:ERR_ABORTED 500 (Internal Server Error)
There was a problem with the fetch Operation: Error: Network response was not ok at …
Sometimes it works without mistake
The status code 500 indicates that this is a server-side problem. The fetch request looks okay.
Test and debugging code, just as you do it normally. ?
it seems to work but if I console.log(“content of timeInterval:”, timeInterval); make come things that do not look right and the confused me
What’s the matter?