Tagged Questions
30
votes
3answers
1k views
Math.random() returns value greater than one?
While playing around with random numbers in JavaScript I discovered a surprising bug, presumably in the V8 JavaScript engine in Google Chrome. Consider:
// Generate a random number [1,5].
var rand5 ...
5
votes
2answers
257 views
parseInt % and px problem
<div style="left: 100%"></div>
parseInt($("div").css("left"), 10);
When I try to get value of left, some browsers give result in pixels, some in %.
Here is an example ...
4
votes
6answers
2k views
Is there an equivalent to JavaScript parseInt in C#?
I was wondering if anyone had put together something or had seen something equivalent to the JavaScript parseInt for C#.
Specifically, i'm looking to take a string like:
123abc4567890
and return ...
3
votes
3answers
285 views
is NaN equals to NaN
parseFloat("NaN")
returns "NaN", but
parseFloat("NaN") == "NaN"
returns false. Now, that's probably a good thing that it does return false, but I don't understand how this is so. Did the ...
3
votes
1answer
185 views
Javascript parseInt with radix 16 issue
The alert statement alert(parseInt("0x00C02700010004E9",16)); incorrectly displays 54086076498707690 instead of the correct value 54086076498707689. Please notice the last two digits!!
Could anyone ...
3
votes
3answers
1k views
In jQuery, should i use parseFloat(el.width()) or parseInt(el.width(),10)? which one is more preferred
I always had this question:
When i dont mind the exact floating number
Which one is preferred?
parseFloat
someValue = parseFloat(el.outerWidth())+parseFloat(ele2.css("marginRight")),
...
2
votes
5answers
645 views
Javascript parsing int64
How can I convert a long integer (as a string) to a numerical format in Javascript without javascript rounding it?
var ThisInt = '9223372036854775808'
alert(ThisInt+'\r' ...
1
vote
3answers
37 views
parseInt rounding for number of days in month
Number of days in month calculated this way:
var start = new Date(d.getFullYear(),d.getMonth(),1);
var end = new Date(d.getFullYear(),d.getMonth()+1,1);
var daysInCurMonth = ...
1
vote
2answers
117 views
JavaScript parseInt IE Nan error
I have function in JavaScript:
function calc(num) {
if (num <= 22) {
return parseInt(num);
} else {
num += '';
var curr = 0;
for (var i = 0; ...
1
vote
6answers
97 views
how to convert array of integers into hex string and vice versa in javascript
I have array of 32 bit integers in javascript.
How to convert it into the Hex string
and again build the same 32 bit integer array from that Hex string when required?
hexString = ...
1
vote
4answers
592 views
Remove leading zeros in Javascript [closed]
Possible Duplicate:
Truncate leading zeros of a string in Javascript
What is the simplest and cross-browser compatible way to remove leading zeros in Javascript ?
e.g. If I have a textbox ...
1
vote
4answers
196 views
Javascript parseInt gives very unexpected results
I'm parsing a string to check if it's a date, and by chance we now discovered that my method doesn't work for dates in august or september. This is what I do (the input isn't really hard-coded, ...
0
votes
3answers
126 views
Javascript slider problem
Hi I am currently working on a script given to me by my boss and it is not working in all browsers except IE.
Now he is using the CSS property left to animate it so he has a variable which gets the ...
0
votes
1answer
77 views
parseInt in Javascript doesn't give back expected value [closed]
Possible Duplicate:
Javascript parseInt gives very unexpected results
Can someone explain why javascript interprets parseInt(08) and parseInt(09) as zero but does everything right on 01 to ...
0
votes
1answer
345 views
Comparing 2 times with jquery
Thanks in advance for any help...
I'm trying to (1) generate a begin time and end time for a form, (2) find the difference between the two, and (3) add the difference to a new input.
Here's what I ...
0
votes
6answers
252 views
javascript parseInt at end of string
I know that
parseInt(myString, 10) //"never forget ze radix"
will return a number if the first characters in the string are numerical, but how can I do this in javascript if I have a string like ...
0
votes
3answers
92 views
Number test in loop
I was looking to create a boolean test for a number when it is 10, 20, 30, 40. This would be used in a loop, 1 to 100. ParseInt seems a bit part but was wondering what a method for a true or false ...
-1
votes
1answer
56 views
Trying to derive Age from DOB, and then calculate points, using if..else statements
I'm trying to derive the users age from DOB using a script, then depending on this age award them points for two areas Federal(f) and Quebec(q) Immigration, as they both calculate age points i have a ...
-2
votes
4answers
53 views
strange javascript error only when value =9 or 8 [closed]
Possible Duplicate:
Workarounds for JavaScript parseInt octal bug
well i have this
http://jsfiddle.net/gMDfk/1/
The alert returns 0
The code in jsfiddle works perfect when value is equal to ...