WeDoctor Frontend Technology
Author

WeDoctor Frontend Technology

Official WeDoctor Group frontend public account, sharing original tech articles, events, job postings, and occasional daily updates from our tech team.

107
Articles
0
Likes
154
Views
0
Comments
Recent Articles

Latest from WeDoctor Frontend Technology

100 recent articles max
WeDoctor Frontend Technology
WeDoctor Frontend Technology
Nov 4, 2021 · Frontend Development

Master JavaScript Object Traversal: keys(), values(), entries() & Custom Iterators

This article explains the differences between Object.keys/values/entries and their array counterparts, shows how to use them for object property iteration, demonstrates creating custom iterator methods for plain objects, and compares iterator results with array returns, providing code examples and visual diagrams.

IteratorKEYSObject Traversal
0 likes · 10 min read
Master JavaScript Object Traversal: keys(), values(), entries() & Custom Iterators
WeDoctor Frontend Technology
WeDoctor Frontend Technology
Oct 27, 2021 · Frontend Development

Master Rollup Plugins: From Basics to Advanced Hook Techniques

This article provides a comprehensive guide to Rollup plugins, explaining why plugins are needed, detailing hook types and their execution timing, showing how to create simple plugins with example code, and exploring internal mechanisms such as PluginDriver, hook loading, and caching.

JavaScript BundlerPlugin Developmentbuild hooks
0 likes · 23 min read
Master Rollup Plugins: From Basics to Advanced Hook Techniques
WeDoctor Frontend Technology
WeDoctor Frontend Technology
Oct 13, 2021 · Fundamentals

Decode Chinese ID Cards & Solve Classic LeetCode Problems with JavaScript

This article explains how to parse Chinese ID numbers to extract gender and age, demonstrates the checksum calculation, and then walks through classic algorithm challenges—including climbing stairs, longest palindrome, trapping rain water, and greedy cookie allocation—providing clear JavaScript implementations for each.

AlgorithmsLeetCodedynamic programming
0 likes · 18 min read
Decode Chinese ID Cards & Solve Classic LeetCode Problems with JavaScript