Posts by Lucas Mota • 15 points
5 posts
-
0
votes1
answer44
viewsA: (Extract-text-webpack-plugin) error [1] "Loader" must be a string
I changed the version and it worked npm i --save-dev extract-text-webpack-plugin@1
-
0
votes1
answer44
viewsQ: (Extract-text-webpack-plugin) error [1] "Loader" must be a string
after I did the installation of Extract-text-webpack-plugin started to return me the error erro [1] "loader" must be a string follows my webpack configuration 'use strict' const path =…
-
0
votes3
answers68
viewsA: Doubt of HTML5
<!DOCTYPE html> <html> <head> <meta charset="UTF-8" /> <title>Cups</title> <style> body { background-color: orange; } p { text-indent: 10%; } .a {…
-
1
votes3
answers127
viewsQ: (Pure js) function that Filtre array so that it returns single arrays with distinct elements
var list =[ [3,4,7,9,4],[3,4,7,9,5],[3,4,7,9,6],[3,4,7,9,7], [3,4,7,9,8],[3,4,7,9,9],[3,4,8,3,3],[3,4,8,3,4], [3,4,8,3,5],[3,4,8,3,6],[3,4,8,3,7],[3,4,8,3,8],…
-
0
votes5
answers505
viewsQ: Is it possible to listen to multiple buttons with a single addeventlistener() ? If it is possible How to do it with pure javascript?
</div id ="num-vol"> <div> <button type="button" class="quina" value="1">01</button> <button type="button" class="quina" value="2">02</button> <button…