Posts by user2916405 • 33 points
4 posts
-
0
votes1
answer149
viewsA: Filter an array of dates by the month’s equivalent number and the Javascript year
The code below resolves my situation. Thank you all for your patience. var funcionarioId = '134'; var month = "11" var year = "2019"; var filteredData = data.filter(function(item) { var dataSplit =…
javascriptanswered user2916405 33 -
1
votes1
answer149
viewsQ: Filter an array of dates by the month’s equivalent number and the Javascript year
Problem I need to filter a string date array example: data = [[user1, 20/11/2019], [user1, 25/05/2019], [user1, 27/11/2019]] Where the user selects the name the month "11" and the year "2019", in…
javascriptasked user2916405 33 -
1
votes3
answers126
viewsQ: How to extract values from a column and separate them with a comma
I’m trying to read a columna from a table and tap the results with a comma. For example: I need the ID column. then the result would be: 31, 7, 6, 5, 4, 3, 2 I tried that way unsuccessfully.…
javascriptasked user2916405 33 -
0
votes1
answer47
viewsQ: How to calculate a column with a comma as decimal
In a table that has one of the columns I want to add are with comma as decimal. table as I do to add these values? At the moment I’m using this function but don’t add up the numbers after decimal.…
javascriptasked user2916405 33