It's All Writing.

Writing makes you happy.

Entries from 2019-07-01 to 1 month

How to detect that it can be merged between multiple elements in an array at node.

Prerequisites There are arrays has multiple elements as below. const mergeableArray = [ { 'age': 18, 'status': true }, { 'hobby': 'fishing' }, { 'status': null } ]; const unmergeableArray = [ { 'age': 18, 'status': true }, { 'hobby': 'fish…

How to get Salesforce sObject's fields information by python

It's simple. You can use simple_salesforce for this purpose. The describe method returns sObject's meta data. The environment and code is below. Environment python 3.6.x simple_salesforce Code #!/usr/bin/python from simple_salesforce impor…