Skip to content
View dwhiteGUK's full-sized avatar

Block or report dwhiteGUK

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
dwhiteGUK/README.md

Hi there, I'm Darren 👋

I'm a Husband, Father, Developer, and Runner

  • 🔭 I’m currently working on a retail website
  • 🌱 I’m currently going deep on Testing (see goal below)
  • 🥅 2023 Goals: testing, testing, testing

Connect with me:

dlw | Twitter dlw | LinkedIn


Languages and Tools:

Visual Studio Code

HTML5

CSS3

JavaScript

React

Node.js

Git

GitHub




Anurag's github stats

Pinned Loading

  1. Hooks Hooks
    1
    import { useEffect, useState } from 'react';
    2
    
                  
    3
    const useDebounce = (value, delay = 500) => {
    4
      // State and setters fpr debounced value
    5
      const [debouncedValue, setDebouncedValue] = useState(value);
  2. Working with JS Date and Date-fns li... Working with JS Date and Date-fns library
    1
    // Max Date
    2
    const { format, isBefore, isValid, subYears, parseISO } = require('date-fns');
    3
    
                  
    4
    const maxDate = format(subYears(new Date(), 18), 'yyyy-MM-dd');
    5
    const maxResult = isBefore(dobDate, parseISO(maxDate, 1));