Skip to content
View FocusThen's full-sized avatar
🦄
Everyting is JavaScript
🦄
Everyting is JavaScript

Highlights

  • Pro
Block or Report

Block or report FocusThen

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
FocusThen/README.md

Hello 👋


Now Playing

Pinned

  1. React useState from scratch React useState from scratch
    1
    import React from 'react';
    2
    import ReactDOM from 'react-dom';
    3
    
    
    4
    let callCount = -1
    5
    let states = []
  2. Vue3-Reactivity Vue3-Reactivity Public

    Proxy - targetMap - depsMap - Dep

    JavaScript

  3. Vue.js-like Virtual DOM Vue.js-like Virtual DOM
    1
    <div id="app"></div>
    2
    <script>
    3
        // Create virtual node
    4
        function h(tag, props, children) {
    5
            // Return the virtual node
  4. Vue.js-like reactive state Vue.js-like reactive state
    1
    <script>
    2
        let activeEffect
    3
    
    
    4
        class Dep {
    5
            subscribers = new Set()