Skip to content
View myshov's full-sized avatar
🚲
bycyle mood
🚲
bycyle mood

Organizations

@f-o-r @JSPartyMeetup @defront
Block or Report

Block or report myshov

Report abuse

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

Report abuse

Pinned Loading

  1. history-of-javascript history-of-javascript Public

    Project "History of JavaScript"

    JavaScript 902 32

  2. 2gis/mapgl-gltf 2gis/mapgl-gltf Public

    Three.js plugin for @2gis/mapgl

    TypeScript 3 2

  3. xkbswitch-macosx xkbswitch-macosx Public

    Console keyboard layout switcher for MacOS

    Objective-C 216 26

  4. awesome-mobile-web-development awesome-mobile-web-development Public

    All that you need to create a great mobile web experience

    1.2k 62

  5. programming_in_haskell programming_in_haskell Public

    My Solutions for Programming in Haskell by Graham Hutton

    Haskell 16 3

  6. 11 Ways to Invoke a Function 11 Ways to Invoke a Function
    1
    console.log(1);
    2
    (_ => console.log(2))();
    3
    eval('console.log(3);');
    4
    console.log.call(null, 4);
    5
    console.log.apply(null, [5]);