Address - payable: send operation & transfer operation.

 Address.auth
this.transfer 
//inbuilt functionality

Members of address

almost like key-value types in Javascript:

- balance
- transfer

<address>.balance //uint256
<address>.code // bytes memory
<address>.codehash // bytes32
<address>.payable.transfer(uint256 amount)
<address payable>.transfer(uint256 amount) returns (bool)
<address>.call(bytes memory) returns (bool, bytes memory)
<address>.delegatecall(bytes memory) returns (bool, bytes memory)

With documentation know the basics you don’t have to read the entire thing but understand the basics of solidity.

People to follow on Twitter