Posts by Fuechter • 181 points
2 posts
-
3
votes2
answers914
viewsA: What is the difference between a mixin and a Function in SASS
Although the two serve almost the same purpose, they have a slight difference, where mixin serves more to include a block of code while Function serves more returns a value. What is the real…
-
2
votes1
answer46
viewsA: How do I add a month to the current date with jquery
Follows the answer: var _data = new Date(); $("#qtdeParcela").on("change", function () { var _qtde = 5 for (var i = 0; i < _qtde; i++) { var new_date = new Date()…