Tagged Questions
5
votes
7answers
382 views
How can you represent mathematical constant “e” as a value in JavaScript?
How can you represent mathematical constant "e" as a value in JavaScript?
4
votes
4answers
388 views
3
votes
3answers
87 views
Access a property of a css block from jquery
I have a site that is heavily based on javascript, but I still want to let it be easily modified by CSS.
Take this example... there is a div that it has its opacity modified when on hover through ...
3
votes
2answers
690 views
Common constants file for PHP and JavaScript
How do guys suggest to share a constants file between PHP and JavaScript, in order not to repeat code? XML file? I am assuming mixing up javascipt inside PHP would not be the right solution!? Thanks
2
votes
3answers
55 views
event constants for javascript?
In javascript I have code like
document.addEventListener("mousedown", mouseDownHandler);
and occasionally I might fat finger something like
document.addEventListener("mouzedown", ...
2
votes
2answers
206 views
JS error 'redeclaration' of var when it's first line in program?
SCRPT5039: Redeclaration of const property line 1 character 1
line1: var editObj = null;
This is the beginning of the file and I checked to make sure that variable is not in any other js files being ...
2
votes
1answer
86 views
How do I separate out constants for JavaScript?
I have a web-page created with JavaServer Pages (JSP) and with significant JavaScript (JS) that makes calls to other servers. The URL that the page talks to depends on what server (read: environment) ...
1
vote
6answers
50 views
How to dodge a DRY issue when calling a function with a constant?
I am still new to Javascript. I need to attach a function to handle events on some of my HTML elements.
I am doing the following:
$('#iinp0').keyup(function(){keyReleased('iinp0');});
...
1
vote
3answers
551 views
How to declare string constants in JavaScript?
I want to declare string constants in JavaScript.
Is there is a way to do that?
1
vote
1answer
175 views
Using constants as indices for Javascript Associative Arrays
I'm looking to create an associative array in JS, but use constants defined as part of the class as indices.
The reason I want this is so that users of the class can use the constants (which define ...
1
vote
2answers
215 views
How to create a file of constants in Javascript?
Is there a way to create a file of constants in JavaScript, which I can reference and then use?
What I am looking for is something like this:
Constants.js:
var Phones =
{
Nokia: 1,
...
1
vote
4answers
2k views
Can you use constant variables in javascript?
I am using visual studios 2010 and created a javascript file(jscript.js) and I saw on one page saying you can make constant variables in javascript like:
const x = 20;
bu to on another page I read ...
1
vote
3answers
315 views
How to create constant data
I'm designing some classes and for some data I want to use fields that are constant.
Now, AS USUAL, IE does not support the key const so
const T = 10;
not work.
I could create a property via ...
1
vote
3answers
3k views
Javascript: constant properties
In javascript, can I declare properties of an object to be constant?
Here is an example object:
var XU = {
Cc: Components.classes
};
or
function aXU()
{
this.Cc = ...
1
vote
3answers
1k views
JavaScript: Inheritance and Constant declaration
Help,
I have this class
var jMath = {
pi2: Math.PI,
foo: function() {
return this.pi2;
}
}
I want to make the pi2 constant and i want jMath to inherit from Math object. How ...
0
votes
2answers
109 views
Object property constants in ECMAScript?
I've seen some proposals for ECMAScript Harmony in terms of being able to specify constants with the keyword const. However, it seems to be only available in block scopes (i.e., FunctionBody and ...
0
votes
3answers
255 views
Why is const throwing an error on multiple runs of the code when inside an if() or try{}catch(e){}?
I'm trying to declare a bunch of constants using const. My problem is that testing the code in the Firebug console throws an error complaining about the 'redeclaration of const foo'.
I've attempted ...
0
votes
3answers
197 views
Javascript condition based on Rails variable
I want to set a global constant (in Rails) and then depending on that I want to put a condition in a JavaScript file (which is included in every page of my app). I also have some Rails dependent code ...
0
votes
1answer
65 views
What is the problem with this code?
The compile error I'm getting is "newline in constant"
The error occurs where the four asterisks are (****).
I can't debug, because the solution won't build successfully.
<script ...
0
votes
1answer
50 views
Js constants with variables inside
I know I'm able to this in PHP, but I can't remember the name or the way to do it, so I'll just explain what it is, and when someone tells me how it's called I'll update this question.
I have some ...
0
votes
2answers
1k views
Is there a way to define symbolic constants in Javascript?
I searched if JavaScript offers a mean to define symbolic constants, but didn't find anything. Did I miss something ?
Is it a common practices to use const var instead ?
var const MAXIMUM_VALUE = ...
0
votes
4answers
882 views
Is it possible to simulate constants in Javascript using closures?
Is it possible to simulate constants in Javascript using closures? If so, can you please furnish me with an example?
0
votes
3answers
777 views
External Interface Error
This is the code I am using to call a function calc in javascript:
import flash.external.ExternalInterface;
ExternalInterface.addCallback("asFunc", this, asFunc);
function asFunc(str:String):Void ...