MCPcopy Create free account
hub / github.com/TheAlgorithms/JavaScript /

Class

Dynamic-Programming/FindMonthCalendar.js:8–8  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6import { isLeapYear } from '../Maths/LeapYear'
7
8class Month {
9 constructor() {
10 this.Days = ['M', 'T', 'W', 'Th', 'F', 'S', 'Su']
11 this.BDays = ['M', 'Su', 'S', 'F', 'Th', 'W', 'T']

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected