Tagged Questions
0
votes
5answers
43 views
Functionally prepending an array element
Is there a functional way to prepend an element to an array. Something like:
[1,2].prepend(3); // should return [3, 1, 2]
Kindly notice that a reference to the result array is returned. The reason ...
2
votes
2answers
40 views
Rewrite cycle in functional style
I've created simple function: it has array as input and id. Function suppose to take all elements 'before' given idea.
function takeBefore(stars, id) {
var taken = [];
for(var i = ...
3
votes
2answers
63 views
is any JavaScript statement an expression?
I know that functional languages like Lisp don't have statements. Everything there is an expression. JavaScript is a functional language. So I came to a conclusion that every JavaScript statement is ...
0
votes
3answers
61 views
In Javascript, why does array.map(String) return array of strings?
The list processing routine map on an array object is very convenient at times. Here's one of the handy ways to use it:
var numarr = [1,2,3,4];
console.log(numarr.map(String))
>>> ["1", ...
0
votes
2answers
55 views
Scheme namespace use convention. Compared with Javascript
Had to learn javascript for a project, do not miss it one bit! (Though I recognize its use and scale of its impact, not only in the desktop, but server and mobile spaces likewise). One of the things ...
5
votes
5answers
98 views
Can anyone explain me what is state and mutable data?
In computer science, functional programming is a programming paradigm
that treats computation as the evaluation of mathematical functions
and avoids state and mutable data.
...
1
vote
2answers
37 views
Functions returning functions aproach in JavaScript
i have almost a half year since i continuously learn javascript and started to use more seriously. JS has the C like syntax and other parts like closures, dynamic typing, optional paramates, etc.
...
-1
votes
1answer
44 views
Persistent data structures: a persistent index? [closed]
Functional programming utilizes immutable data. When you modify something you reinstantiate "the world" reusing the previous incarnation in as much as possible for your augmented world.
I am ...
3
votes
1answer
62 views
Correct use of a fold or reduce function to long-to-wide data in python or javascript?
Trying to learn to think like a functional programmer a little more---I'd like to transform a data set with what I think is either a fold or a reduce operation. In R, I would think of this as a ...
3
votes
3answers
54 views
Functional Programming: Printing to JS console in Chrome
I'm implementing functional programming from Eloquent Javascript to my JS console in Google Chrome. There's a function that loops through each element in an array and performs the given action in the ...
3
votes
1answer
99 views
Functional programming: reflecting state in absence of actual state change?
I am new to some of the advanced functional programming ideas, in particular: how to work with immutable data. Data structures are often composites, composed of smaller data structures. For ...
7
votes
3answers
119 views
Call each function in the list
I've got an array of functions and looking for a concise way to call each one in order.
fns = [
function a() { console.log('a') },
function b() { console.log('b') },
function c() { ...
0
votes
2answers
57 views
How to use chains without applying anti-patterns in JavaScript?
If you try to program in a functional style on JavaScript, you'll probably realize the conventional fn(obj,params...) form gets unreadable fast.
console.log(
join(
map(function(row){ ...
2
votes
6answers
112 views
Is there a way to dynamically modify a closure of a function in JavaScript?
function a(){ return x++; }
function b(){ var x=0; return a(); /*call a using b's scope*/ };
console.log(b(),b(),b());
Desired output: 1, 2, 3
Question: is there a way to call a inside b, forcing ...
0
votes
1answer
22 views
Temporarily rebind then safely re-attach library method
I'm building a module in the context of an existing library. Some of the library's functionality — specifically, LIBRARY.module.add (for the sake of example: the actual functionality's much more ...
1
vote
1answer
75 views
Is there any good example of use cases for angular.identity()?
According to the documentation
A function that returns its first argument. This function is useful when writing code in the functional style.
I am wondering where I can find a good example of such ...
2
votes
4answers
176 views
Javascript: What is the benefit of using function context vs passing as parameter
Other than tricking existing functions that already implement this as something, why would you want to write a javascript function so that you need to alter its context (via .call or .apply) rather ...
2
votes
1answer
83 views
Stuck SICP Exercise 1.1.7 in Javascript
I've decided to try working through the MIT SICP course, but in Javascript.
The following code outputs undefined, but it should output a fairly accurate guess of the square root of 5.
I've tested ...
5
votes
1answer
53 views
What value does this Javascript function factory add?
I stumbled upon this block of code and don't really see the need for returning a function when the outer function doesn't take any arguments?
var percent = (function() {
var fmt = ...
1
vote
2answers
75 views
understanding closures in loops
function f() {
function makeClosure(x) {
return function(){
return x;
}
}
var a = [];
var i;
for(i = 0; i < 3; i++) {
a[i] = makeClosure(i);
}
return a;
}
var gg = ...
1
vote
2answers
81 views
Looking for a way to refactor D3.js-style method chaining pattern
While learning D3.js, I have come across the blog post explaining the main design-pattern behind it's reusable units of code. I have reproduced the relevant bit of code below. The way the pattern is ...
0
votes
1answer
88 views
JavaScript: Anonymous vs Helper function
I'm trying to understand this functional style code from the book Eloquent Javascript:
http://eloquentjavascript.net/chapter6.html#exercise1
When the count() function passes an anonymous function to ...
2
votes
2answers
66 views
Extract object attribute from list of objects in Javascript
I have the following object that I'm receiving from an API:
{
'2012-12-12': [
{ 'id': 1234,
'type': 'A' },
{ 'id': 1235,
'type': 'A' },
{ 'id': 1236,
...
8
votes
3answers
1k views
Strange behavior for Map, parseInt [duplicate]
Possible Duplicate:
javascript - Array.map and parseInt
I saw this example of strange JavaScript behavior on twitter
['10','10','10','10','10'].map(parseInt)
evaluates to
[10, NaN, 2, ...
0
votes
1answer
58 views
Assign a string to a given “bucket” based on its value, and keep bucket size approximately equal
I'm not sure if this question is too vague for this format, but I'll try to be specific.
I am adding product information to a Google Apps Script ScriptDB which stores things as JSON objects. Due to ...
1
vote
4answers
64 views
js pattern problems
I'm confused by a javascript design pattern I'm reading about:
var class = (function() {
...a bunch of code...
return {
.. some more code..
;
// or, in some cases
return ...
1
vote
1answer
126 views
Javascript curry: context in returned function
In a curry function like this :
var curry = function() {
var slice = Array.prototype.slice,
args = slice.call(arguments),
fn = args.shift();
return function(){
return ...
4
votes
2answers
156 views
How to parse pure functions
Let's say you have the following function
var action = (function () {
var a = 42;
var b = 2;
function action(c) {
return a + 4 * b + c;
}
return action;
}());
// how would you parse ...
4
votes
4answers
167 views
What object javascript function is bound to (what is its “this”)?
I know that inside the function it is this.
var func = function {
return this.f === arguments.callee;
// => true, if bound to some object
// => false, if is bound to null, because ...
1
vote
2answers
74 views
Make an iteration more functional in JavaScript / JQuery
I wrote a simple bit of JavaScript to create a HTML table.
It is populated by iterating over an array
var resultSet;
for (var i = 0, i < questions.length;; i++){
...
resultSet += ...
0
votes
3answers
73 views
Getting the lengthiest path in an array, functional style
I have an array of SVG lines that represent the sides of a triangle, I want to color the lengthiest one (the hypotenuse). Assuming ab, bc and ca are the the SVG line elements...
var hypotenuse = [ab, ...
0
votes
1answer
105 views
How to nest for loops recursively and efficiently in Javascript?
I'm new to this website, and i thought you could help me with something i just can't figure out.
I need to nest for loops recursively and find a way to push in an individual array the complete path ...
1
vote
1answer
241 views
Underscore.js: transform an array of objects into a multi-level nested object?
How would you do this kind of transformation in a functional way with underscore.js? I've repeated the following pattern several times lately, and it seems kind of ugly to me.
var fruitList = [
...
0
votes
1answer
65 views
How to select N last members in javascript array (functional style)
Is there an elegant built-in (functional style) way to select last N members in Javascript array?
2
votes
1answer
108 views
Javascript object with a hidden function?
I want to create a variable such that foo.properties returns {default:{x:undefined}}. However, you may notice that the properties variable is not directly editable and thus __defineGetter__ is used to ...
1
vote
2answers
85 views
Blocking on Asynchronous Calls in Worker Thread in Javascript
I have created a Worker in javascript that needs to loop indefinitely. Inside the loop, it needs to make several asynchronous calls and wait for them to complete before continuing on.
There are two ...
10
votes
2answers
246 views
I couldn't understand the Y-Combinator, so I tried to implement it and ended up with something shorter, which worked. How is that possible?
I couldn't understand the Y-combinator, so I tried to implement a function that enabled recursion without native implementation. After some thinking, I ended up with this:
Y = λx.(λv.(x x) v)
Which ...
3
votes
5answers
112 views
What is this high-order function called?
I'm in doubt what to call a high-order function that transforms a function so it uses an array instead of an argument-list. It's complicated to explain in words, so there's an example in JavaScript:
...
10
votes
0answers
639 views
Functional reactive programming — is Fay expressive enough? [closed]
So I'm doing a fairly involved javascript/html client with lots of ajax calls and other involvements of callback-ism. I'm entertaining the thought of using Fay for this purpose. I'm aware of Elm. ...
4
votes
1answer
68 views
Explain bindbind() function
Can someone explain this function?
var bindbind = Function.prototype.bind.bind(Function.prototype.bind);
I understand the result it produce:
var bindedContextFunc = bindbind(function)(context);
...
1
vote
1answer
252 views
Infinite loop with asynchronous callback pattern in javascript
Suppose I want to send an asynchronous AJAX request to the server, and when it responds send another request and repeat forever:
function sendXHR(url, callback) {
// Send XMLHttpRequest to server ...
1
vote
2answers
337 views
Closures in Typescript (Dependency Injection)
I'm getting my butt kicked trying to use TypeScript in a functional style with dependencies. Let's say I want to make a module that depends on another module.
If I wasn't using Dependency Injection ...
4
votes
1answer
186 views
Typescript - Higher order function types
I'm getting really excited about TypeScript. How do you set the type of a function parameter?
function twoMoreThanYou(calculateANumber: Function):number {
return calculateANumber(4) + 2;
}
...
0
votes
7answers
81 views
javascript how to simplify this code by returning method to execute?
I'm playing with JS a bit and have following code snippet
var Dog = function(name) {
this.name = name
}
Dog.prototype= {
'bark': function() {
alert(this.name + ' is barking');
},
...
0
votes
2answers
104 views
A reduce function in Javascript
I'm studying Javascript using Marijn Haverbeke's book Eloquent JavaScript and didn't understand the following example:
function reduce(combine, base, array) {
forEach(array, function (element) {
...
0
votes
1answer
206 views
In JavaScript using both linq.js and knockout.js, how can I generate an observableArray that contains a computed property?
Sorry if my title makes no sense but this is what I've gotten down to so far:
function createPostsArray(last) {
var postArr =
generate(
...
0
votes
0answers
57 views
Underscore's implementation of the Foreach method [duplicate]
Possible Duplicate:
underscore's each checking for {} return of callback
I was taking a look at underscore's source and implementation of the Foreach method. I just have one question ...
-8
votes
1answer
224 views
How powerful is javaScript going to be with linq.js + Rx.js compared to Haskell? [closed]
I know a little about Haskell and know it's very powerful programming language due to its mathematical consistency.
I know some about LINQ and it has lots of similarities to Haskell, in fact, Erik ...
0
votes
3answers
326 views
cartesian product of multiple arrays in javascript
How would you implement the cartesian product of multiple arrays in javascript?
As an example,
cartestian([1,2],[10,20],[100,200,300]) //should be
// ...
17
votes
4answers
375 views
If functions in JS are first-class, what allows them to be called before they are defined?
Don't first class functions mean that they behave as variables? Clearly they don't behave exactly like variables though, since this:
console.log(foo);
var foo = 'bar';
...doesn't work, whereas ...


