Skip to content

Instantly share code, notes, and snippets.

View emreavcilar's full-sized avatar
:octocat:
Working from home.

emre avcılar emreavcilar

:octocat:
Working from home.
View GitHub Profile
common coding interview questions
/*
js patterns
*/
/*
browser functions
*/
/*
all kind of typscript functions
*/
/*
All kind of dom functions
*/
/*
all kind of useful functions
*/
@emreavcilar
emreavcilar / 00-a!.leetcode.js
Last active April 27, 2022 22:19
leetcode solutions
/*everything about leetcode*/
@emreavcilar
emreavcilar / varLetConst.txt
Created November 23, 2021 09:50
var vs let cs const in js
https://www.linkedin.com/posts/milos--milovanovic_frontend-javascript-activity-6868846885734555649-Wo8a
var let const
Stored in Global Scope YES NO NO
Function Scope YES YES YES
Block Scope NO YES YES
Can Be Reassigned? YES YES NO
Can Be Redeclared? YES NO NO
@emreavcilar
emreavcilar / questions.txt
Last active November 22, 2021 20:04
𝗖𝗮𝗿𝗲𝗲𝗿 𝘁𝗶𝗽: Questions a Software Engineer should ask in an Interview
https://www.linkedin.com/posts/daniele-serfilippi_interview-activity-6864125563381022720-FEnC
What is the current structure of the team and how does this role fit into that structure?
Goal: understand the organization’s company culture
- How is success measured in this role?
Goal: grasp a sense of the standard that you will be held to
- How are design decisions made on your team?
/*
Everything about regex
*/