Default is distinguishable from Negligence in that it does not involve carelessness or imprudence with respect to the discharge of a duty or obligation but rather the intentional omission or nonperformance of a duty. To default on a debt is to fail to pay it upon its due date. Default noun (FAIL) C or U a failure to do something, such as pay a debt, that you legally have to do: Defaults on loan repayments have reached 52,000 a month. English Language Learners Definition of default (Entry 1 of 2) —used to describe something that happens or is done when nothing else has been done or can be done —usually used in the phrase by default —sometimes used before another noun: a failure to make a payment (such as a payment on a loan).
Also found in: Thesaurus, Legal, Financial, Acronyms, Idioms, Encyclopedia.
de·fault
(dĭ-fôlt′)n.default
(dɪˈfɔːlt) nde•fault
(dɪˈfɔlt)n.
default
Past participle: defaulted
Gerund: defaulting
Imperative |
---|
default |
default |
Present |
---|
I default |
you default |
he/she/it defaults |
we default |
you default |
they default |
Preterite |
---|
I defaulted |
you defaulted |
he/she/it defaulted |
we defaulted |
you defaulted |
they defaulted |
Present Continuous |
---|
I am defaulting |
you are defaulting |
he/she/it is defaulting |
we are defaulting |
you are defaulting |
they are defaulting |
Present Perfect |
---|
I have defaulted |
you have defaulted |
he/she/it has defaulted |
we have defaulted |
you have defaulted |
they have defaulted |
Past Continuous |
---|
I was defaulting |
you were defaulting |
he/she/it was defaulting |
we were defaulting |
you were defaulting |
they were defaulting |
Past Perfect |
---|
I had defaulted |
you had defaulted |
he/she/it had defaulted |
we had defaulted |
you had defaulted |
they had defaulted |
Future |
---|
I will default |
you will default |
he/she/it will default |
we will default |
you will default |
they will default |
Future Perfect |
---|
I will have defaulted |
you will have defaulted |
he/she/it will have defaulted |
we will have defaulted |
you will have defaulted |
they will have defaulted |
Future Continuous |
---|
I will be defaulting |
you will be defaulting |
he/she/it will be defaulting |
we will be defaulting |
you will be defaulting |
they will be defaulting |
Present Perfect Continuous |
---|
I have been defaulting |
you have been defaulting |
he/she/it has been defaulting |
we have been defaulting |
you have been defaulting |
they have been defaulting |
Future Perfect Continuous |
---|
I will have been defaulting |
you will have been defaulting |
he/she/it will have been defaulting |
we will have been defaulting |
you will have been defaulting |
they will have been defaulting |
Past Perfect Continuous |
---|
I had been defaulting |
you had been defaulting |
he/she/it had been defaulting |
we had been defaulting |
you had been defaulting |
they had been defaulting |
Conditional |
---|
I would default |
you would default |
he/she/it would default |
we would default |
you would default |
they would default |
Past Conditional |
---|
I would have defaulted |
you would have defaulted |
he/she/it would have defaulted |
we would have defaulted |
you would have defaulted |
they would have defaulted |
Noun | 1. | default - loss due to not showing up; 'he lost the game by default' loss - the act of losing someone or something; 'everyone expected him to win so his loss was a shock' |
2. | default - act of failing to meet a financial obligation nonpayment, nonremittal failure - an act that fails; 'his failure to pass the test' | |
3. | default - loss resulting from failure of a debt to be paid delinquency - nonpayment of a debt when due financial loss - loss of money or decrease in financial value | |
4. | default - an option that is selected automatically unless an alternative is specified alternative, option, choice - one of a number of things from which only one can be chosen; 'what option did I have?'; 'there no other alternative'; 'my only choice is to refuse' | |
Verb | 1. | default - fail to pay up fail, neglect - fail to do something; leave something undone; 'She failed to notice that her child was no longer in his crib'; 'The secretary failed to call the customer and the company lost the account' ante up, pay up, pay - cancel or discharge a debt; 'pay up, please!' |
Defaults Apps
default
verbdefault
nounNonperformance of what ought to be done:default
[dɪˈfɔːlt]A.Njudgment by default → juiciom en rebeldía
he won by default → ganó por incomparecencia de su adversario
we must not let it go by default → no debemos dejarlo escapar por descuidoorsin hacer nada
in default of → a falta de
to default on one's payments → no pagar los plazos
default
[dɪˈfɔːlt]vito default on sth [+ payment, loan] → ne pas s'acquitter de qch
to default on a debt → ne pas s'acquitter d'une dette
to win by default [candidate, politician] → remporter une victoirepar défaut; [team, competitor] → gagner par forfait
default
ndefault
:default
[dɪˈfɔːlt]1.njudgement by default (Law) → sentenza in contumacia
to win by default → vincere per abbandono dell'avversario
in default of → in mancanza di
to default on a debt → non onorare un debito
Want to thank TFD for its existence? Tell a friend about us, add a link to this page, or visit the webmaster's page for free fun content.
Link to this page:
Declaring defaults in your schema
Your schemas can define default values for certain paths. If you createa new document without that path set, the default will kick in.
Note: Mongoose only applies a default if the value of the path isstrictly undefined
.
Default functions
You can also set the default
schema option to a function. Mongoose willexecute that function and use the return value as the default.
The setDefaultsOnInsert
option
By default, mongoose only applies defaults when you create a new document.It will not set defaults if you use update()
andfindOneAndUpdate()
. However, mongoose 4.x lets you opt-in to thisbehavior using the setDefaultsOnInsert
option.
What Does Default Title Mean
Important
The setDefaultsOnInsert
option relies on theMongoDB $setOnInsert
operator.The $setOnInsert
operator was introduced in MongoDB 2.4. If you'reusing MongoDB server < 2.4.0, do not use setDefaultsOnInsert
.
Default functions and this
Unless it is running on a query with setDefaultsOnInsert
, a defaultfunction's this
refers to the document.