Skip to content

Instantly share code, notes, and snippets.

View PriyaBhatt13's full-sized avatar
🎯
Focusing

Priya Bhatt PriyaBhatt13

🎯
Focusing
View GitHub Profile
@PriyaBhatt13
PriyaBhatt13 / launch.json
Created September 12, 2018 05:56
Launch.json file for debugging jest test cases in visual studio Code for Windows
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Jest Tests",
"program": "${workspaceRoot}\\node_modules\\jest-cli\\bin\\jest.js",
"args": [
"-i"
@PriyaBhatt13
PriyaBhatt13 / nested_object_destruction.js
Created April 5, 2018 09:02
gist to show how destruction works for nested object
// extract single prop with same name
const user = {
id: 339,
name: 'Fred',
age: 42
};
const {name} = user;
console.log(name); //prints: Fred