Posts by Rafael Miller • 135 points
2 posts
-
13
votes3
answers4688
viewsQ: What is the difference between Function() {} and () => {}? Why doesn’t $http.get work?
When I use $http.get('/products').then((response) => { this.products = response.data; this.allProducts = response.data; }); the page is loaded with the products in Google Chrome, but when I use…
-
0
votes1
answer81
viewsQ: C++ problems with overloading Operator+ (Undefined Reference to 'Operator+(...))
I’m having trouble making the operator + overloading in C++. Does anyone have any idea what’s wrong? To perform Unit tests I am using googletest on Ubuntu. (wanted to do this to make the code…