Skip to content

Instantly share code, notes, and snippets.

View gabs086's full-sized avatar
💪
On my way in Professional Development

Gabriel Agoncillo gabs086

💪
On my way in Professional Development
View GitHub Profile
@shirakaba
shirakaba / Creating an Expo app in 2023.md
Created July 12, 2023 08:08
Creating an Expo app in 2023

Creating an Expo app in 2023

12th July, 2023. I'm going to try creating an iOS app called Paranovel, using Expo. My environment for mobile app dev (Xcode, Ruby, etc.) should be in reasonably good shape already as I frequently develop with React Native and NativeScript.

Creating the app

Go to https://docs.expo.dev, and see the Quick Start: npx create-expo-app paranovel

This runs with no problem, then I get this macOS system popup:

@viral-sh
viral-sh / lesserKnown.js
Last active June 28, 2021 01:19
A list of lesser know syntaxes and features of JavaScript
// void operator
void 0 // returns undefined
void (0) // returns undefined
void 'abc' // returns undefined
void {} // returns undefined
void (1 === 1) // returns undefined
void (1 !== 1) // returns undefined
void anyfunction() // returns undefined