Skip to content
View jarvisluong's full-sized avatar
:octocat:
Never AWOL
:octocat:
Never AWOL

Organizations

@18yolol

Block or report jarvisluong

Report abuse

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

Report abuse

Pinned Loading

  1. react-navigation/react-navigation react-navigation/react-navigation Public

    Routing and navigation for React Native and Web apps

    TypeScript 24k 5.1k

  2. jwasham/coding-interview-university jwasham/coding-interview-university Public

    A complete computer science study plan to become a software engineer.

    319k 79k

  3. techy-novice techy-novice Public

    This is my personal blog

    JavaScript 7 32

  4. Converting standard Vietnamese Chara... Converting standard Vietnamese Characters to non-accent ones (Chuyển đổi ký tự tiếng Việt sang không dấu). Example: hải -> hai
    1
    // This function converts the string to lowercase, then perform the conversion
    2
    function toLowerCaseNonAccentVietnamese(str) {
    3
        str = str.toLowerCase();
    4
    //     We can also use this instead of from line 11 to line 17
    5
    //     str = str.replace(/\u00E0|\u00E1|\u1EA1|\u1EA3|\u00E3|\u00E2|\u1EA7|\u1EA5|\u1EAD|\u1EA9|\u1EAB|\u0103|\u1EB1|\u1EAF|\u1EB7|\u1EB3|\u1EB5/g, "a");