Debug Articles

RSS feed

11 articles found in Debug

Remote Debugging Webpages In iOS Safari | TestMu AI (Formerly LambdaTest)
Remote Debugging Webpages In iOS Safari | TestMu AI (Formerly LambdaTest)

Remote debugging is debugging a piece of code by connecting the application running remotely with your environment of development. Generally, developers do this using a debugger which has support for remote debugging, and a small debug server running on a remote machine.

Saif Sadiq

Saif Sadiq

August 27, 2018

7 min read

A Comprehensive Guide on Reference Error: JavaScript
A Comprehensive Guide on Reference Error: JavaScript

When any value is assigned to undeclared variable or assignment without the var keyword or variable is not in your current scope, it might lead to unexpected results and that’s why JavaScript presents a ReferenceError: assignment to undeclared variable 'x' in strict mode. And this error causes a problem in execution of functions.

Saif Sadiq

Saif Sadiq

April 17, 2018

5 min read

syntaxerror: unexpected reserved word
syntaxerror: unexpected reserved word

Strict mode is a necessity for streamlined code and easy error debugging, but syntaxerror: unexpected reserved word can occur.

Robin Jangu

Robin Jangu

April 16, 2018

4 min read

Forgotten Callbacks, Getting a Closure | TestMu AI (Formerly LambdaTest)
Forgotten Callbacks, Getting a Closure | TestMu AI (Formerly LambdaTest)

Old versions of internet explorers had bugs due to which memory leakage due to forgotten callbacks and closures resulted in crashing. The problem then was that they couldn’t differentiate between javascript and DOM nodes cyclic differences.

Robin Jangu

Robin Jangu

April 12, 2018

5 min read

Why Global Variables Are Bad (And How to Avoid Them) | TestMu AI (Formerly LambdaTest)
Why Global Variables Are Bad (And How to Avoid Them) | TestMu AI (Formerly LambdaTest)

Global variables cause memory leaks, tight coupling, namespace pollution, and flaky tests. Learn why global variables are bad and how to avoid them.

Robin Jangu

Robin Jangu

April 9, 2018

5 min read

TypeError: JavaScript
TypeError: JavaScript

TypeError in JavaScript is thrown when you run an operation on a value of an incompatible type. Learn the common causes, real fixes, and how to prevent them.

Saif Sadiq

Saif Sadiq

April 6, 2018

6 min read

SyntaxError: JSON.parse: bad parsing | TestMu AI (Formerly LambdaTest)
SyntaxError: JSON.parse: bad parsing | TestMu AI (Formerly LambdaTest)

JSON or JavaScript Object Notation is a ubiquitous data format used by all sorts of mobile and web apps for asynchronous browser-server communication. JSON is an extremely popular data format,...

Deeksha Agarwal

Deeksha Agarwal

April 5, 2018

6 min read

Complete Guide To Memory Leakage Testing In JavaScript | TestMu AI (Formerly LambdaTest)
Complete Guide To Memory Leakage Testing In JavaScript | TestMu AI (Formerly LambdaTest)

Learn how to perform memory leakage testing in JavaScript with expert approaches, tools, and best practices. Identify and repair leaks for more reliable JavaScript code.

Robin Jangu

Robin Jangu

March 31, 2018

7 min read

JavaScript Script Errors Demystified: Troubleshooting Guide | TestMu AI (Formerly LambdaTest)
JavaScript Script Errors Demystified: Troubleshooting Guide | TestMu AI (Formerly LambdaTest)

Get a comprehensive guide on dealing with script errors in JavaScript. Learn best practices to prevent, detect, and resolve errors for optimized code performance.

Deeksha Agarwal

Deeksha Agarwal

March 29, 2018

5 min read

Range Error in JavaScript
Range Error in JavaScript

Sometimes while scripting we use functions that in the end go out of range, while performing tasks. These errors can be easily tackled, if while implementation you keep track of the ranges of variable types used.

Robin Jangu

Robin Jangu

March 28, 2018

5 min read

Understanding Uncaught TypeError In JavaScript | TestMu AI (Formerly LambdaTest)
Understanding Uncaught TypeError In JavaScript | TestMu AI (Formerly LambdaTest)

Learn & understand what is Uncaught TypeError in JavaScript through this guide. Debugg the Uncaught TypeError and make sure your scripts are error free.

Deeksha Agarwal

Deeksha Agarwal

March 27, 2018

5 min read