Manohar Reddy Poreddy

Results 50 issues of Manohar Reddy Poreddy

https://google.github.io/styleguide/jsguide.html#naming-camel-case-defined Correct XmlHttpRequest newCustomerId innerStopwatch supportsIpv6OnIos YouTubeImporter checkNonempty/checkNonEmpty - When we are talking about Camel case, why below are starting with Capital letters, - Please explain in detail. - XmlHttpRequest...

lang:js

https://google.github.io/styleguide/jsguide.html#jsdoc-enum-and-typedef-comments const BandersnatchType = { /** This kind is really frumious. */ FRUMIOUS: 'frumious', /** The less-frumious kind. */ MANXOME: 'manxome', }; - Avoid unfamiliar words to readers - This...

enhancement
help wanted
lang:js

https://google.github.io/styleguide/jsguide.html#features-declare-types-as-needed Tip: There are many cases where the compiler can infer a templatized type but not its parameters. This is particularly the case when the initializing literal or constructor call...

lang:js

https://google.github.io/styleguide/jsguide.html#formatting-function-arguments // If the argument list is longer, wrap at 80. Uses less vertical space, // but violates the rectangle rule and is thus not recommended. doSomething(veryDescriptiveArgumentNumberOne, veryDescriptiveArgumentTwo, tableModelEventHandlerProxy, artichokeDescriptorAdapterIterator)...

lang:js

https://google.github.io/styleguide/jsguide.html#features-arrays-destructuring Tip: For (un)packing multiple values into a function’s parameter or return, prefer object destructuring to array destructuring when possible, as it allows naming the individual elements and specifying a...

lang:js

https://google.github.io/styleguide/jsguide.html#disallowed-features-dynamic-code-evaluation Do not use eval or the Function(...string) constructor (except for code loaders). These features are potentially dangerous and simply do not work in CSP environments. - Please explain what...

lang:js

https://google.github.io/styleguide/jsguide.html#disallowed-features-non-standard-features (Note that projects writing against specific APIs, such as Chrome extensions or Node.js, can obviously use those APIs) - Please explain why "can obviously use those APIs"?

lang:js

Please verify if MyClass.RETRY_COUNT is correct https://google.github.io/styleguide/jsguide.html#jsdoc-property-comments MyClass.RETRY_COUNT = 33; - Is the above conflicting the below? https://google.github.io/styleguide/jsguide.html#features-classes-fields "Set all of a concrete object’s fields (i.e. all properties other than...

question
lang:js

https://google.github.io/styleguide/jsguide.html#jsdoc-line-wrapping Line-wrapped block tags are indented four spaces. Wrapped description text may be lined up with the description on previous lines, but this horizontal alignment is discouraged. - Both below...

question
lang:js

https://google.github.io/styleguide/jsguide.html#jsdoc-tags There is no hard rule for when to combine tags, or in which order, but be consistent. - Why not have a recommendation like below? - Have the 'combine'...

lang:js