0
votes
1answer
20 views

Specific number validation?

Is it possible to validate a field to a specific set of numbers using javascript? Say for example in a postcode field you can only enter four numbers to be be accepted e.g. 2747,2750, 2753, 2760, ...
0
votes
2answers
45 views

Adding space between numbers?

I'm trying to make a number input. I've made so my textbox only accepts numbers via this code: function isNumber(evt) { evt = (evt) ? evt : window.event; var charCode = (evt.which) ? ...
-1
votes
3answers
59 views

How to round off 9999999999999999 to 9999999999999998

In my case, i am converting a string value of '9999999999999999' to integer using parseFloat(). But it converts to next number of it i.e. 10000000000000000. But i need to convert it to before of that ...
1
vote
4answers
30 views

Non Decimal Numbers on Math.ceil or Math.round in JavaScript?

I want to use Javascript to round up a number. For example like this, 15 => 20 345 => 400 201 => 300 180 => 200 93 => 100 22 => 30 How to achieve this using Javascript? I know i ...
0
votes
3answers
45 views

Change array values to number from string

I have an array with these values: var items = [Thursday,100,100,100,100,100,100] I'm grabbing these from the URL query string so they are all string values. I want all columns except the first to ...
2
votes
3answers
58 views

How to check for numbers in a textbox, of which you only want letters A - Z

I am using JavaScript on my website to check input elements within a form. I am trying to ensure that there are no numbers in the field when the user enters their name. The form is created using PHP. ...
1
vote
6answers
72 views

JavaScript adding a string to a number

I was reading the re-introduction to JavaScript on MDN and in the section Numbers it said that you can convert a string to a number simply by adding a plus operator in front of it. For example: ...
-2
votes
1answer
49 views

Generate 5 random numbers that it SUM a determinate quantity in PHP or JS [closed]

I want to set an x number for example 4000 and I want to set in how many random numbers that will SUM that number Number: 4000 how many random: 5 Result: 1538 597 817 693 355 And if I sum that ...
2
votes
1answer
37 views

javascript Number constructor strange behaviour

Converting string to number produces incremented value: var n = '9999999999999999'; console.log(n); // -> 9999999999999999 var nn = Number(n) console.log(nn); // -> 10000000000000000 How to ...
0
votes
0answers
56 views

nvd3 y axis values, need help feeding data into graph/formatting

I'm trying to graph my data with nvd3 and having a hard time. Here's a sample of what my data looks like: [{"key":"Castle / Ambient temperature (degrees Celsius)","values":[{"unix ...
0
votes
0answers
31 views

One script modifying the other's output?

I'm having difficulties making these two scripts operate together. The first script changes numbers 0-9 to its respective image, while the second displays a count-up occurring at a set ...
0
votes
2answers
54 views

Converting numbers 0-9 to images?

I'm quite new to JavaScript, but am attempting to write a script that will convert text numbers to an image (of the number). How might I go about this? P.s. I did find this code online, but it seems ...
-2
votes
1answer
54 views

if doesn't work in javascript function

I use this function to validate one input element : function validerInput(qte, qtemax) { var floatRegex = /^((\d+(\.\d *)?)|((\d*\.)?\d+))$/; if (floatRegex.test(qte.value)) { var a = ...
3
votes
2answers
40 views

Negative numbers to binary string

Anyone knows why javascript Number.toString function does not represent negative numbers correctly? //If you try (-3).toString(2); //show "-11" // but if you fake a bit shift operation it works as ...
1
vote
1answer
39 views

How to accurately convert numbers to strings in JavaScript

JavaScript stores all numbers in double-precision floating-point format, with a 52-bit mantissa and an 11-bit exponent (the IEEE 754 Standard for storing numeric values), and therefore its ...
1
vote
3answers
63 views

Multiplying numbers in a string at specific positions

I'm trying to solve the 8th Project Euler problem. Find the greatest product of five consecutive digits in the 1000-digit number. I'm pretty sure I'm way off. I also tried a simpler program using a ...
0
votes
3answers
60 views

RegEx to match only numbers incorrectly matching

I'm trying to use a regular expression in JavaScript to match a number or a number containing a decimal. The regular expression looks like [0-9]+ | [0-9]* \. [0-9]+. However, for some reason this ...
-1
votes
4answers
98 views

Return Every THIRD odd number using javascript? [closed]

All I am trying to do is simply return every third odd number within a specified range. This one is a bit weird for me, I tried a few different things but nothing even worth posting as my attempts ...
0
votes
2answers
54 views

Create specific range of random numbers and link different CSS styles to these

Somewhat of a noob here! What I want to do, by using javascript, is to get a random number between 10 and 25 when it’s summer, -5 and 10 when it’s spring and fall and then -20 and -5 when it’s ...
0
votes
2answers
43 views

Javascript math power real/irrational_number library [duplicate]

I was looking all around the web, but could not find anything that helps me. I need to do math: 10^(1.7), but javascript doesn't allow that. Can someone have sort of code or knows some library that ...
0
votes
3answers
41 views

JS - Prime numbers script - explanation

I'm learning JS and stumbled upon a script to output the prime numbers < 100 . But I'm not sure I fully understood how it works. If somebody could explain it, I would be glad. :) So here it is: ...
0
votes
2answers
242 views

how to use javascript to check if the first character in a textbox is a number?

I'm making a simple form and having a textbox for street address.... All I want to do is check if the first value entered is a number or not. How can I do it? if(document.forms[0].elements[2].value. ...
5
votes
4answers
83 views

Using Javascript to sort an array of numeric arrays

In Javascript, if I have an array of arrays, like the following: X = [ [1,2,3,4], [1,1,2,3], [1,1,3], [1,4], [2,1,2], [2,2] ] Javascript sorts my array, comparing ...
-1
votes
1answer
53 views

Jquery/Javascript/PHP: Display every number with two decimals

I have a (hopefully) quick and short question. I try to find a Javascript, Jquery, or PHP function that allows me to display every number on a webpage with two decimals. Basically, 0 should be 0.00, ...
1
vote
2answers
89 views

Unbiased random range generator in Javascript

To prevent bias for max, I'm recalculating each time the decimal range falls above max, instead of stripping decimals. Using random() introduces some bias I think, but that is acceptable. Optional ...
0
votes
0answers
38 views

Why Is 0.35+0.05 Equal to 0.39999999999999997 (Recuring Number) In JS? [duplicate]

In a Javascript code of mine, I've noticed that the result of 0.35+0.05 is 0.39999999999999997 which is a Recurring Decimal, why?
0
votes
1answer
235 views

Form validation with Javascript - Field value must be between 2 specific numbers

I have a form on a page. On the form there is a field named Birthyear. I need to figure out the following in javascript: When a value between 1900-2012 is entered into the field, the form are ...
1
vote
1answer
47 views

How to use isNaN here properly?

I have two fields. The first one is a name field and the other one is a number field. I want to check if the number field is numeric, if not, then select() will be used and background turns to yellow ...
0
votes
1answer
242 views

javascript form validation phone number

I thought it would be neat to try to make my own form validation. I'm okay on the code up to testing the phone number. I'm using javascript to only allow numbers, and detect the number of digits. If ...
4
votes
2answers
110 views

Javascript regex matching string ending with number inconsistent

I have the following regex patterns that matches all the 'act' that ends with numbers within a list of URLs. Regex pattern /\/ch(\d+)\/act(\d+)/gi Javascript code pageSrc[1] = "../ch01/index.html"; ...
0
votes
1answer
51 views

Slowly change a value with javascript

I'm making a prototype of an interface for boats. Details aside, I have created a numpad using javascript onClick that lets you input a value and then send that value to another field, let's call it ...
1
vote
2answers
215 views

Generate unique number based on string input in Javascript

In the past I have made a function that generates an unique id (number) from a string. Today I discover that it is not as unique as should be. Never saw a problem before with it. Today two different ...
3
votes
4answers
131 views

Javascript max value of array and find where it is?

javascript question here... I need to find the highest number in an array and then return where in the array this number is. It cannot be sorted as this needs to match up with a word in another ...
0
votes
1answer
107 views

printing line numbers

For debugging, I want to be able to print messages, and have the line number prepended. No, I don't want to get involved with a full-fledged debugger. I have defined a global constant ln="thisline = ...
4
votes
1answer
68 views

Bias in randomizing normally distributed numbers (javascript)

I’m having problems generating normally distributed random numbers (mu=0 sigma=1) using JavaScript. I’ve tried Box-Muller's method and ziggurat, but the mean of the generated series of numbers comes ...
3
votes
5answers
102 views

Finding the closest number downward to a different number from an array

Example: I have an array like this: [0,22,56,74,89] and I want to find the closest number downward to a different number. Let's say that the number is 72, and in this case, the closest number down in ...
3
votes
3answers
132 views

Understanding underscore's implementation of isNaN

Taken from the underscore.js source: _.isNaN = function(obj) { return _.isNumber(obj) && obj != +obj; }; Why did they do it this way? Is the above implementation equivalent to: _.isNaN = ...
1
vote
0answers
62 views

Strange floating point numbers behavior in Safari

What's wrong with the following code? $(function() { var ok = true; for (var i = 0; i < 1000; i++) { var x = 100; // if we use new Number(100) here, the test will pass ...
36
votes
7answers
968 views

An improved isNumeric() function?

During some projects I have needed to validate some data and be as certain as possible that it is javascript numerical value that can be used in mathematical operations. jQuery, and some other ...
2
votes
3answers
51 views

subtract exponents in JavaScript

Out of interest and not real life demands: Is it somehow possible to subtract exponents of two numbers in JavaScript? Because the result of 1e+29 * 1e-3 (or 1e+29 / 1e+3) is the unprecise number ...
0
votes
3answers
46 views

Most efficient way to retrieve numbers from a querystring?

I need to parse querystrings that contain both text and numbers. For example the following querystring: ?userID=12&team=Sales&quarter=Q1&count=2310 should be translated into the ...
0
votes
3answers
50 views

Large number in javascript

I am working on a calculator in javascript, where user can enter the values in textfield and operation will be performed. Now if user enters a very large value for example 5345345345353453453453535 ...
0
votes
2answers
96 views

how to add tow or more than two input box values in javascript or jquery

i have 110 text boxes and i wanted to sum the values which are available in those 110 text boxes, few may have values so i have written code like below but it is does not give me the correct value in ...
2
votes
2answers
50 views

Google Charts go up by 1, not continous

I have a google chart on my website, it's a line graph. But my Y axis data values will only go up in whole numbers, so I don't want to have the "4.5" values on the Y axis, as you can see: If ...
1
vote
2answers
58 views

64-bit float on 32-bit CPU [closed]

It's well-known fact that all numbers in JavaScript are 64-bit floating point numbers (double precision). But what if i have 32-bit CPU? How does it (JS interpreter) work then? Does JS interpreter ...
0
votes
2answers
60 views

Get number from a Javascript class code

I am messing around with a button on the internet and have got part of my code working, clicking the button automatically only 133 times in a 200 millisecond interval. var count = 0; var thingy = ...
2
votes
3answers
94 views

Comma in value not working when displaying price

I am having a problem displaying a price that is brought in from a PHP file by AJAX and then appended to the page via Javascript. $('.cash1').text(parseFloat(prices[0]).toFixed(2)); This works fine ...
2
votes
1answer
95 views

Is addition commutative?

JavaScript's numbers are quirky. I realised that addition is not associative: (-9999999999999999 + 1) + 1 === -9999999999999999 + (1 + 1) // false! What about commutativity? Are there JavaScript ...
0
votes
1answer
168 views

Regex comma separated list contains nine digits phone number

I have quite small but very annoying problem with regex. I would like to find regex for comma separated list which contains nine digits phone number for example : Pass : 123456789,123456789 Not Pass ...
0
votes
1answer
56 views

Convert 1-100 to another value set

Using JavaScript, I wish to convert a value between 1-100 to a corresponding value set between 1000-150000. What is the best approach for this? Comparing and multiplying / dividing array values, or is ...

1 2 3 4 5 7