Good looking. Generally used associated with girls but can be used with boys too. "prettier" is used to compare two things, it says which thing is the most pretty. "A is prettier than B" means that person A is the most pretty, or the "prettiest" :) Answer from Charlie-sr on hinative.com
🌐
Strike Magazines
strikemagazines.com › blog-2-1 › dont-worry-youre-prettier
Don’t Worry, You’re Prettier — Strike Magazines
September 13, 2022 - This reality may seem harsh, but if your friends tell you that "you're prettier than her," not only are they lying to you, but the statement doesn't really mean anything. It doesn’t mean anything except that they tore down another person to lift you up. They are your friends, and if they are good friends, they would obviously say that you are prettier.
🌐
Reddit
reddit.com › r/dating › [deleted by user]
You're so much prettier in person? : r/dating
October 24, 2023 - Well, no. It doesn’t meant you’re ugly at all. It means they already thought you were pretty, but you’re prettiER in person. So you’re even prettier. Some people photograph well but aren’t as attractive in person. Some people don’t photograph well but are attractive in person.
🌐
WordReference
forum.wordreference.com › spanish-english / español-inglés › spanish-english grammar / gramática español-inglés
you are prettier than I/me? | WordReference Forums
May 12, 2008 - You're prettier than what I'm. Eres más guapa que yo. Besos ... LaReinita- "You are prettier than I" does not sound strange/funny to me because I know that by saying "than I" means than I "am" without saying the "am". At least that is how I learned to express and understand it.
🌐
Quora
quora.com › Which-is-correct-prettier-or-more-pretty
Which is correct: 'prettier' or 'more pretty'? - Quora
In practice, you'll never go wrong with prettier. ... So, you think you’ve drafted a tweet, an email, a short story, or even a novel. These are different forms of communication, but the process of bringing them to fruition has a necessary, sometimes overlooked step: editing! Unless you’re a professional writer, it’s unlikely that you have an editor who can review your writing regularly.
🌐
HiNative
hinative.com › how do you say this in ...
How do you say "You're prettier " in English (US)? | HiNative
October 2, 2019 - Do you know how to improve your language skills❓ All you have to do is have your writing corrected by a native speaker!
🌐
Queen Bee Knits
queenbeeknits.com › 2023 › 06 › 18 › youre-prettier-when-you-smile
You’re Prettier When You Smile | Queen Bee Knits
June 18, 2023 - A little bit of kindness and caring go so much farther than a critical , “you’d looks so much prettier if you smiled”. You take care of your face (and your mouth. Mind your own business. Let me choose my face … whether it be a smile, a scowl or resting bitch face.
Find elsewhere
🌐
Reverso
context.reverso.net › translation › english-spanish › you're+way+prettier
you're way prettier - Translation into Spanish - examples English | Reverso Context
You're way prettier. Tu eres más linda. ... Unlock Examples are used only to help you translate the word or expression searched in various contexts. They are not selected or validated by us and can contain inappropriate terms or ideas. Please report examples to be edited or not to be displayed.
🌐
Urban Dictionary
urbandictionary.com › define.php
Urban Dictionary: You're Pretty
November 29, 2011 - Response to a completely inarticulate comment made by someone who should focus mostly on looking attractive to become successful. Verbal communication by this person is likely to cause embarrassment to this person and to those around her.
🌐
Quora
quora.com › Is-this-correct-Youre-getting-much-prettier-every-day
Is this correct 'You're getting much prettier every day'? - Quora
Answer (1 of 14): It doesn't sound 100% natural. Here's what I would say: You're getting so much prettier every day. You get so much prettier every day. You're getting prettier every day. You get prettier every day. Without the “so” it is still correct but doesn't sound as nice. Also you ca...
🌐
Medium
bagula.medium.com › calladita-te-miras-mas-bonita-you-look-prettier-when-youre-quiet-88e50ee0bd76
Calladita Te Miras Mas Bonita/You Look Prettier When You’re Quiet | by Fabiola Bagula, PhD | Medium
August 22, 2021 - It is repeated often, and the intonation of when it is uttered is either a veiled threat to quiet down “or else”, or a veiled compliment reminder to continue to stay quiet. It conflates the notion of physical beauty and expression — creating the internal, eternal conflict of having voice or being beautiful. This is the space we were always conditioned to take. Silence. Bite your tongue so often the metallic taste of blood seasons your appetite.
🌐
Medium
medium.com › journal-kita › you-are-pretty-but-13808c39801b
You are pretty, but…
May 11, 2024 - “You look healthy, and your chubby cheeks are so cute, they make you look youthful.” ... Now I feel more and more confident in my own skin. I realized that my physical appearance doesn’t have mistakes, and I don’t need to fix anything.
🌐
Free Candie
freecandie.com › home › blog › to the dickwad who said “you’re prettier than she is anyway”
To the dickwad who said "you're prettier than she is anyway" - Free Candie
October 10, 2015 - I had NO idea what he was going to do – maybe “boop” me on the nose? But it was such an oddly condescending and weird gesture that I made a face and ducked out of the way. I guess he got the girl behind me because I overheard him say loudly, “You’re prettier than she is anyway.”
🌐
GirlsAskGuys
girlsaskguys.com › dating › questions › what does it mean when a guy says "you keep getting prettier"?
What does it mean when a guy says "you keep getting prettier"? - GirlsAskGuys
August 20, 2024 - its a compliment. don't take it the wrong way d00d hahaa. you were pretty when he first saw you but you only keep getting more pretty because he...
🌐
Ludwig
ludwig.guru › s › much+prettier
much prettier | Meaning, Grammar Guide & Usage Examples | Ludwig.guru
Things were not much prettier on the company side. ... A taxi driver told her, "You're much prettier in person".
Top answer
1 of 16
6932

Pretty-printing is implemented natively in JSON.stringify(). The third argument enables pretty printing and sets the spacing to use:

var str = JSON.stringify(obj, null, 2); // spacing level = 2

If you need syntax highlighting, you might use some regex magic like so:

function syntaxHighlight(json) {
    if (typeof json != 'string') {
         json = JSON.stringify(json, undefined, 2);
    }
    json = json.replace(/&/g, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;');
    return json.replace(/("(\\u[a-zA-Z0-9]{4}|\\[^u]|[^\\"])*"(\s*:)?|\b(true|false|null)\b|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?)/g, function (match) {
        var cls = 'number';
        if (/^"/.test(match)) {
            if (/:$/.test(match)) {
                cls = 'key';
            } else {
                cls = 'string';
            }
        } else if (/true|false/.test(match)) {
            cls = 'boolean';
        } else if (/null/.test(match)) {
            cls = 'null';
        }
        return '<span class="' + cls + '">' + match + '</span>';
    });
}

See in action here: jsfiddle

Or a full snippet provided below:

function output(inp) {
    document.body.appendChild(document.createElement('pre')).innerHTML = inp;
}

function syntaxHighlight(json) {
    json = json.replace(/&/g, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;');
    return json.replace(/("(\\u[a-zA-Z0-9]{4}|\\[^u]|[^\\"])*"(\s*:)?|\b(true|false|null)\b|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?)/g, function (match) {
        var cls = 'number';
        if (/^"/.test(match)) {
            if (/:$/.test(match)) {
                cls = 'key';
            } else {
                cls = 'string';
            }
        } else if (/true|false/.test(match)) {
            cls = 'boolean';
        } else if (/null/.test(match)) {
            cls = 'null';
        }
        return '<span class="' + cls + '">' + match + '</span>';
    });
}

var obj = {a:1, 'b':'foo', c:[false,'false',null, 'null', {d:{e:1.3e5,f:'1.3e5'}}]};
var str = JSON.stringify(obj, undefined, 4);

output(str);
output(syntaxHighlight(str));
pre {outline: 1px solid #ccc; padding: 5px; margin: 5px; }
.string { color: green; }
.number { color: darkorange; }
.boolean { color: blue; }
.null { color: magenta; }
.key { color: red; }

2 of 16
441

User Pumbaa80's answer is great if you have an object you want pretty printed. If you're starting from a valid JSON string that you want to pretty printed, you need to convert it to an object first:

var jsonString = '{"some":"json"}';
var jsonPretty = JSON.stringify(JSON.parse(jsonString),null,2);  

This builds a JSON object from the string, and then converts it back to a string using JSON stringify's pretty print.

🌐
Collins Dictionary
collinsdictionary.com › dictionary › english › prettier
PRETTIER definition and meaning | Collins English Dictionary
Clive Barker EVERVILLE (2001)Mary was an indifferent replica of his wife, younger and prettier but nothing in comparison. Seymour, Gerald FIELD OF BLOOD (2001)She looked like Eve, but was much, much prettier; beautiful in fact. ... Drag the correct answer into the box. ... Drag the correct answer into the box. ... Current = present time or flow (water/electricity). Currant = small dried grape or berry used in cakes. Same sound, different meanings...