Continuous Exploration
The process of refining ideas into an actionable backlog.
["academy/react.html", | |
"academy/react/sample.html", | |
"academy/learn-technology-consulting/management.html", | |
"academy/learn-technology-consulting/tools-and-technology.html", | |
"academy/learn-technology-consulting/transition-sales-to-delivery.html", | |
"academy/learn-technology-consulting/prioritizing.html", | |
"academy/learn-technology-consulting/product-management.html", | |
"academy/learn-technology-consulting/priorities.html", | |
"academy/learn-react-the-right-way/sample.html", |
Foo bar
asdfasdfa
asd fads fsda
JavaScript Code
var str = "hi";
Memory allocation:
Address | Value | Description |
---|---|---|
...... |
... |
async $beforeInsert (queryContext) { | |
await super.$beforeInsert(queryContext) | |
validateStartDate(this) | |
const trx = await Person.startTransaction(); | |
await this.validateAssignmentOverlap(this, trx) | |
queryContext.resolveTransaction = trx; | |
} | |
async $afterInsert (queryContext) { |
type CounterState = { count: number }; | |
const initialState = { | |
count: 0, | |
}; | |
function Counter() { | |
const [state, actions, queue, error] = useSimpleReducer( | |
// initial state | |
initialState, |
type ActionType = | |
| { type: "LOADING" } | |
| { type: "ADD_SUCCESS", payload: number } | |
| { type: "ADD_FAILURE", payload: any }; | |
type StateType = { | |
count: number, | |
isActive: boolean, | |
error: any, | |
}; |
<script> | |
function fac(num) { | |
if(!Number.isInteger(num)) { | |
return NaN; | |
} | |
if(num > 10) { | |
return Infinity; | |
} | |
if (num === 0 || num === 1) |