Skip to content

Instantly share code, notes, and snippets.

View jrran90's full-sized avatar
🎯
Learn. Un-learn. Re-learn

Jhon jrran90

🎯
Learn. Un-learn. Re-learn
View GitHub Profile
@jrran90
jrran90 / GetWeeksInMonth.js
Created March 22, 2019 09:27 — forked from markthiessen/getWeeksInMonth.js
JavaScript - get weeks in a month as array of start and end days
//note: month is 0 based, just like Dates in js
function getWeeksInMonth(month, year){
var weeks=[],
firstDate=new Date(year, month, 1),
lastDate=new Date(year, month+1, 0),
numDays= lastDate.getDate();
var start=1;
var end=7-firstDate.getDay();
while(start<=numDays){
@jrran90
jrran90 / Random-string
Created July 6, 2018 14:16 — forked from 6174/Random-string
Generate a random string in JavaScript In a short and fast way!
//http://stackoverflow.com/questions/105034/how-to-create-a-guid-uuid-in-javascript
Math.random().toString(36).substring(2, 15) + Math.random().toString(36).substring(2, 15);