Questions tagged [developer-tools]

A developer tool is an application used to write, edit, or debug another application, or web site. There are varying kinds of developer tools, from fully blown IDEs, to single purpose tools.

Here are some related tags for specific browsers:

893 questions
-4
votes
1 answer

Mockito use in Java language?

How is Mockito used by Java Developers at entry level ?If yes where Is it important for coding or just related to testing part ?
-4
votes
1 answer

My Javascript animations aren't working properly. Receiving TypeError: r is undefined

I'm converting a website from Webflow to Wordpress and for some reason, I can't get my scripts to execute my animations properly. When looking at the developer's console I just get an error of TypeError: r is undefined. The animation I'm expecting…
TOX
  • 45
  • 1
  • 11
-4
votes
2 answers

Why's the syntax different between these two arrays in JS?

They both contain the same values, but I'm wondering why they look different when I console them out in Dev tools. var values = [6, 6, 6, 19, 13, 50]; function boxWidth() { var widths = new Array(); widths.push(values); …
Edgar Quintero
  • 4,223
  • 2
  • 34
  • 37
-7
votes
1 answer

Can anyone please give me the step by step installation process of the oracle development suite 10g on ubuntu 16.04?

I already have oracle 11g Enterprise Edition installed on my machine. But now I have to work with Reports and Forms Builder for which it was told to install the Oracle Developer Suite 10g. I have downloaded the .cpio files from the oracle…
Nithin cp
  • 109
  • 2
  • 3
  • 11
-8
votes
2 answers

Which block of code will execute faster?

B1 if (this.id === 'username') { switch (this.value.length) { case 0: case 1: case 2: // 'Username must be at least 3 characters' break; case 3: case 4: case 5: case 6: case 7: case 8: …
1 2 3
59
60