If you have a feature like:
function FunctionT(){ //do something }
Could you call it empty or undefined or either work? Is there an official name for this?
A "noop" or "null function":
var noop = function(){}
In computer science, NOP or NOOP (short for No Operation) [...] a team that actually does nothing at all.In computer science, a null function (or a null operator) is a subroutine that does not return data values and leaves the program state unchanged
In computer science, NOP or NOOP (short for No Operation) [...] a team that actually does nothing at all.
In computer science, a null function (or a null operator) is a subroutine that does not return data values and leaves the program state unchanged
Sources, http://en.wikipedia.org/wiki/NOP , https://en.wikipedia.org/wiki/Null_function
, " " - , , ( ); .
" " , , , , . ( , JavaScript , , , "-" .)
, , , , , .
" "
, , , - , --.
:
function doStuff(data, callback) { callback = callback || function(){}; callback(compute(data)); }
Source: https://habr.com/ru/post/1529629/More articles:https://translate.googleusercontent.com/translate_c?depth=1&pto=aue&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1529624/authentication-to-box-in-a-c-desktop-application-using-the-box-windows-sdk-v2-library&usg=ALkJrhgdndrDVjrB_fFtxIIp4n4YHVNmQQRunning code execution in a global space compared to a function in Javascript - javascriptHow to import several databases at once through PhpMyAdmin? - mysqlDB2 JDBC Create clob error - javaHow to create a unique number for unique values in MySQL? - phpError importing phpmyadmin database - mysqlInteraction with AsyncTask from the notification panel - androidAndroid: масштабирование не влияет на данные предварительного просмотра, переданные onPreviewFrame() - androidxamarin.ios datetime device failure - datetimehow to avoid identical expressions in sql SELECT and WHERE? - sqlAll Articles