Skip to content
View Quixomatic's full-sized avatar
Developing SalesWon
Developing SalesWon

Highlights

  • Pro

Block or report Quixomatic

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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

Pinned Loading

  1. JAVASCRIPT: Sort Array By Property A... JAVASCRIPT: Sort Array By Property Alphabetically
    1
    objArray.sort(function(a, b) {
    2
        var textA = a.DepartmentName.toUpperCase();
    3
        var textB = b.DepartmentName.toUpperCase();
    4
        return (textA < textB) ? -1 : (textA > textB) ? 1 : 0;
    5
    });
  2. JAVASCRIPT: Dynamically import somet... JAVASCRIPT: Dynamically import something in es6
    1
    const getAsyncImport = async () => {
    2
        try {
    3
            const dynamicThing = 'faCoffee';
    4
            const something = await import(`/${dynamicThing}`);
    5
            console.log(something);