Posts by Adelino Jose Ngomacha • 92 points
8 posts
-
0
votes5
answers2183
viewsA: Save items and recover values with Localstorage
It turns out you have a small problem in the code, you should save the list of items in the cart (in array form) and update the item when necessary and update the list, and suggest that the items…
-
-1
votes2
answers95
viewsA: Return the number of characters in a word list with Typescript
Well you can use the existing map method in ES6 I advise you to read more about the API. But the idea is to precorrer all array and each time precorreres detects the size of each word and at the end…
-
0
votes2
answers235
viewsA: Reset variable every time you switch to a method
The point is that java loses the reference of the variable, so running in the method in other words would be to say that the nElm that defines in the main method is not the same that is processed…
-
3
votes2
answers917
viewsA: Take the last word of a string and put it at the beginning with jQuery
There are several forms, but take into consideration this that seems to me to be simple: var frase = 'Amanhã vai chover'; // A frase em causa var partes = frase.split(' '); //dividir em partes var…
-
1
votes1
answer60
viewsA: List of product selections
Well Asafe, what you want can be Downloaded using the Woocommerce plugin, you can find on official page of woocomerce , but for the desired purpose you will have to use the plugin’s api that is in…
-
1
votes1
answer624
viewsA: Div in body size
Yes, in order to have this result since the previous Ivs interfere with the width of the desired div you can remove from the static position(the normally used) for absolute and position it. ex:…
-
1
votes1
answer1426
viewsQ: How to use Jquery in Angular 2
I have a theme in HTML,CSS,JAVASCRIPT and were used Frameworks like Bootstrap, Jquery, etc. I intend to implement the theme in an Angular 2 project, in certain pages there are animations,…
-
1
votes0
answers169
viewsQ: Which Front End Framework should I invest in
I have seen many posts and comments not counting numerous job openings that require different frameworks Frontend as Angular(JS, 2, 4), Reactjs, Vuejs that by the reads I have done seem all able to…