Tagged Questions
0
votes
1answer
16 views
Coffeescript-Javascript correlation
I am trying to understand how private methods are created using coffeescript. Following is an example code
class builders
constructor: ->
// private method
call = =>
...
0
votes
1answer
40 views
What is the least-dirty way to expose private javascript vars for testing?
I've got a state machine in JS which (to simplify) has an initial state that is only set before anything happens.
define(function() {
var state = 'initial',
exports = {};
exports.getState ...
0
votes
0answers
36 views
Prototype and privacy
Hy all, and in advance sorry if there is similar question i didn't found any.
Examples before question.
Example1. (Employee.js)
define([], function() {
function Employee(name, surname) {
...
1
vote
1answer
56 views
Javascript: This in Private context
I would like to access variables created inside a private context. I'm creating a private context like this:
(new Function("var a = 'hello'; console.log('this', this);")).call({});
// outputs -> ...
0
votes
3answers
92 views
Access inner variables in JavaScript
I am writing a userscript for some site.
I need to access inner variable in a function. For example, in following code i need to access
"private property" b of object c
function a(){
var b;
...
1
vote
1answer
58 views
How do I access private properties from function prototype in javascript module pattern?
I have been searching for a way to access private properties using the constructor module pattern. I came up with a solution that works but am not sure this is optimal.
mynamespace.test = function () ...
2
votes
0answers
72 views
xui supports private browsing for iOS safari devices?
I have a website that is using xui.js
When turning on Private Browsing mode on an iPhone iOS5+, the xui.ready function does not get called. Is there a fix for it?
<script>
alert('test'); ...
2
votes
0answers
64 views
JavaScript working with constructor
I have the following script included on my page (myScript.js).
function constr(args) {
var param1 = args;
function drawTable(element, tableRows) {
// code that creates ...
2
votes
1answer
57 views
Can I use facebook javascript SDK on a embedded macheine with Private IP?
I have some problems with Facebook Javascript SDK.
I want to write some html and javascript codes to upload photos to FB,
and these codes are implemented on my machine, this machine is a embedded ...
1
vote
1answer
90 views
Private object properties
I got a RequireJs module which instances another module and proxies some methods of it. I would now like to hide the module instance itself and only allow access through the proxy-methods.
...
3
votes
2answers
87 views
Making Javascript Private [duplicate]
Possible Duplicate:
How can I obfuscate JavaScript?
Is it possible to make some of Javascript private and confidential so that certain things can remain confidential?
2
votes
4answers
105 views
Why are my private vars being changed?
here is the fiddle: http://jsfiddle.net/Xh4GU/1
or the code:
function Vector()
{
var v = new Array(123, 456, 789);
this.getV = function()
{
return v;
}
}
function ...
1
vote
3answers
104 views
Javascript variables - Getter issue
I came up with the situation below:
function Dog () {
"use strict";
this.age = 1;
var name = "Fido";
this.getName = function () { return name; }
}
And now I'm creating a new ...
2
votes
5answers
919 views
javascript private function access public variable
i have this class:
function ctest() {
this.var1 = "haha";
this.func1 = function() {
alert(this.var1);
func2();
alert(this.var1);
}
var func2 = function() {
...
2
votes
2answers
107 views
JS Private methods not redefined at each constructor call
How do you make a Javascript private method that is not redefined each time you call the constructor ?
As far as I know, in OOP-JS, private methods are methods defined in the "constructor method" of ...
0
votes
1answer
705 views
Private and public methods in RequireJS objects
I'm not certain how to set methods private or public when using requirejs, as it uses shorthand for object declaration. In the following code, I would prefer if the property "id" and the method ...
2
votes
2answers
201 views
Javascript private variables + Object.create (reference to closure variables)
I was wondering how I could make private variables in javascript through clojure. But still have them cloned when using Object.create.
var point = {};
(function(){
var x, y;
x = 0;
y = 0;
...
2
votes
3answers
141 views
Private members in Javascript. Can they be non-static?
I have this code here:
var Person = (function() {
var name;
var PersonConstructor = function(n) {
name = n;
};
PersonConstructor.prototype.getName = function() {
...
0
votes
1answer
1k views
Module pattern with constructor
I' ve tried combining the module pattern with a constructor function but it seems I' m looking over something.
After instantiating two objects and showing their properties both instance var' s seem ...
0
votes
1answer
88 views
JavaScript compression that preserves public methods?
I'm trying to minimize a library that I've created. Unfortunately, because I started developing the library several years ago, it does not use any standard way of declaring methods and private ...
1
vote
1answer
131 views
While unit testing I frequently require to test internal (private) logic, what is the best practice for this?
I believe everyone encounters a case when there's necessity to test internal wiring of the class/object. I know that in compiled languages this could be done through conditional compiling. Is this ...
4
votes
5answers
786 views
Global and Local and Private Functions (Javascript)
I am currently reading a book on Javascript by Pragmatic, and I'm confused about one thing. They have a section on how to make variables global, local, or private.
What is the difference between ...
1
vote
2answers
144 views
Private variables and access to parent object
I want a main object M containing a sub-object S which has some method E which has a private variable P. I also want the method E to have access to M via another variable V. For the private variables ...
0
votes
3answers
45 views
Prive Function in JS access to variables
I have a JS function with the structure of
function myFunc (method){
this.type = method;
this.border = '20';
this.add = function(){
// some codes
...
0
votes
1answer
118 views
How to access private attributes inside an inherited method in JavaScript
I am trying to call a inherited method that must access private attributes from current object. But it only access the public ones, what is wrong?
My test code should alert both vars:
...
3
votes
1answer
1k views
Private-like properties in models or views of Backbone.js
Is it possible to have private properties in a model? Like the locally declared variables in a (constructor) function, not attached to this, but declared locally and visible only by whatever is ...
2
votes
2answers
225 views
Ways to protect the global scope in Javascript
ORIGINAL QUESTION:
i am studying js and i would like to know if there is any (useful) difference between these two ways of protecting the global scope other than the fact that the second one can be ...
2
votes
1answer
164 views
Javascript speedup in Firefox 8 private browsing?
I noticed a very significant increase in javascript performance in Firefox 8 when I enable private browsing mode -strange! This in a pretty heavily scripted page. Any ideas what might cause this?
...
0
votes
1answer
74 views
Javascript namespacing and private modules
This is a JS newbie questions, I am working with a parent namespace Base and I include all my code within this namespace.
file model.js
Base = {}
Base.Observer = {
method1 : ...
2
votes
3answers
999 views
Private var inside Javascript literal object
How can I declare a private var inside a literal object? Becasuse I've this code:
var foo = {
self: null,
init: function() {
self = this;
self.doStuff();
},
...
4
votes
2answers
581 views
Possible to access private constructor-scoped variables from a functions prototype?
Based on my understanding of javascript, prototype methods cannot access variables that are private to the scope of the constructor,
var Foo = function() {
var myprivate = 'I am private';
...
1
vote
4answers
4k views
Javascript Public/Private Variables
I have an object containing both public and private variables. The public variables are assigned to the private variables (I think), however, whenever I modify the private variables with a function, ...
5
votes
4answers
4k views
Private and public variables to a backbone view
In a backbone view where would you put your private variables and your public.
Right now I have something like this:
myView = Backbone.View.extend({
initialize: function(options){
...
0
votes
3answers
319 views
Using a constructor on a JavaScript static instance
I'm writing a JavaScript library in which I want some methods and properties public and other private. The following seems a great way of doing this whilst wrapping everything up into a single object.
...
2
votes
5answers
157 views
Call private function when passing function as argument in function?
I'm creating a javascript framework, and the code below is not working for some reason. Any reason why?
function jCamp(code){
function test(){
alert();
}
code();
}
jCamp(function(){
...
3
votes
3answers
962 views
Javascript dynamically getter/setter for private properties
I want to create getter/setter methods dyanmically to retrieve private properties.
This is what I did.
First of all, I made the class:
function winClass (posX, posY, w, h) {
var x = posX || 0;
...
0
votes
3answers
124 views
How to access private method from another private method in Javascript
I was wondering if it was possible to call a private method from another private method on Javascript. I have some code like the following:
function Balloon() {
function density( altitude, gas ) {
...
3
votes
4answers
210 views
Just how reserved are the words private and public in JavaScript
Each time I build a JS library I have this sort of concept:
(function(window,undefined){
var LibName = function(){
var privateAPI = {
method: function(){}
};
var publicAPI = {
...
1
vote
2answers
55 views
JS: Difference in effect of how private functions are declared
In this JS snippet, I have an object with two versions of a private function (bar and bar2). I declare two instances, but I was caught out by the fact that one version of the private function (bar) ...
2
votes
2answers
118 views
Javascript OOP privilige method accessing private method with private paramter as input
I'm trying to change a private member by using a Privileged method that I defined. I created a simple class to give you an example of the current issue I'm having:
// Constructor
function ...
3
votes
3answers
669 views
Setting a Javascript Private Variable with the same name as a Function Parameter?
function Foo() {
var myPrivateBool = false,
myOtherVar;
this.bar = function(myOtherVar) {
myPrivateBool = true;
myOtherVar = myOtherVar; // ?????????????????
};
}
...
1
vote
3answers
341 views
Crockford explanation of private properties
I read this: private Javascript variables from Crockford site
but I have some perplexity on his terminology:
here he says:
The members of an object are all
public members Ex. `this.membername ...
0
votes
4answers
394 views
Copy javascript object with private member
I've looked all around and found nothing to help me. Why on earth can't I clone a javascript object with private members without making them quantum entangled?
Just look at this code... It's a plain ...
2
votes
3answers
406 views
Non-static private variables in javascript
I'm setting up my javascript objects like the following
Object1 = function() {
var privateMember = "private value"
return {
publicMember: "public value"
setPrivateMember: function(value) ...
5
votes
3answers
435 views
'this' object can't be accessed in private JavaScript functions without a hack?
I was working on a project for a while, trying to figure out what I was doing wrong, when I finally narrowed "the bug" down to the fact that the below code doesn't work as I expected:
function ...
1
vote
4answers
132 views
Best way to check for users new private messages on website?
I am coding a website in PHP and Javascript which implements private messaging functionality, and i wanted to have it so when a user recieved a new message it notifies them (by a flashing 'mail' icon ...
8
votes
3answers
7k views
Private members when extending a class using ExtJS
I have done some research on the ExtJS forum regarding private methods and fields inside a extended class, and I couldn't find any real answer to this.
And when I say an extended class I mean ...
7
votes
1answer
836 views
Accessing “Public” methods from “Private” methods in javascript class
Is there a way to call "public" javascript functions from "private" ones within a class?
Check out the class below:
function Class()
{
this.publicMethod = function()
{
...
5
votes
3answers
1k views
Javascript new object (function ) vs inline invocation
Is there any considerations to determine which is better practice for creating an object with private members?
var object = new function () {
var private = "private variable";
return {
...
3
votes
5answers
6k views
Nested class in javascript, inheritance of private methods
i'm quite a newbie in javascript, and i'm spending some time trying to create namespaced objects in js.
Now, that's what i'm trying to do:
MainObject = function() {
var privateVariable = "i'm ...