Skip to content

Instantly share code, notes, and snippets.

View haqiramadhani's full-sized avatar
🏠
Working from home

Haqi Ramadhani haqiramadhani

🏠
Working from home
View GitHub Profile
@haqiramadhani
haqiramadhani / code.gs
Last active February 17, 2022 14:12
Membuat contact di google dengan google app script, sync ke android.
function test() {
createContact('Test Contact', '08273488734', '');
}
function doGet( req ) {
const { action, ...data } = req.parameter;
switch(action) {
case "create":
const { name, phone, email } = data;
createContact( name, phone, email );